[Lldb-commits] [PATCH] D48855: Fixed compilation failure after the code completion refactor patch
Raphael Isemann via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 2 15:23:15 PDT 2018
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rL336149: Fixed compilation failure after the code completion refactor patch (authored by teemperor, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D48855?vs=153809&id=153812#toc
Repository:
rL LLVM
https://reviews.llvm.org/D48855
Files:
lldb/trunk/include/lldb/Interpreter/CommandObject.h
lldb/trunk/include/lldb/Utility/CompletionRequest.h
Index: lldb/trunk/include/lldb/Interpreter/CommandObject.h
===================================================================
--- lldb/trunk/include/lldb/Interpreter/CommandObject.h
+++ lldb/trunk/include/lldb/Interpreter/CommandObject.h
@@ -16,7 +16,7 @@
#include <string>
#include <vector>
-#include <lldb/Utility/CompletionRequest.h>
+#include "lldb/Utility/CompletionRequest.h"
// Other libraries and framework includes
// Project includes
Index: lldb/trunk/include/lldb/Utility/CompletionRequest.h
===================================================================
--- lldb/trunk/include/lldb/Utility/CompletionRequest.h
+++ lldb/trunk/include/lldb/Utility/CompletionRequest.h
@@ -10,9 +10,9 @@
#ifndef LLDB_UTILITY_COMPLETIONREQUEST_H
#define LLDB_UTILITY_COMPLETIONREQUEST_H
-#include <lldb/Utility/Args.h>
-#include <lldb/Utility/StringList.h>
-#include <llvm/ADT/StringRef.h>
+#include "lldb/Utility/Args.h"
+#include "lldb/Utility/StringList.h"
+#include "llvm/ADT/StringRef.h"
namespace lldb_private {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D48855.153812.patch
Type: text/x-patch
Size: 1032 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20180702/f84bd484/attachment.bin>
More information about the lldb-commits
mailing list