[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:22:13 PDT 2018


teemperor created this revision.

https://reviews.llvm.org/D48855

Files:
  include/lldb/Interpreter/CommandObject.h
  include/lldb/Utility/CompletionRequest.h


Index: include/lldb/Utility/CompletionRequest.h
===================================================================
--- include/lldb/Utility/CompletionRequest.h
+++ 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 {
 
Index: include/lldb/Interpreter/CommandObject.h
===================================================================
--- include/lldb/Interpreter/CommandObject.h
+++ 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


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D48855.153809.patch
Type: text/x-patch
Size: 966 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20180702/425207ac/attachment.bin>


More information about the lldb-commits mailing list