Fixed compilation failure after the code completion refactor patch
authorRaphael Isemann <teemperor@gmail.com>
Mon, 2 Jul 2018 22:18:18 +0000 (22:18 +0000)
committerRaphael Isemann <teemperor@gmail.com>
Mon, 2 Jul 2018 22:18:18 +0000 (22:18 +0000)
Subscribers: lldb-commits

Differential Revision: https://reviews.llvm.org/D48855

llvm-svn: 336149

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

index 28bf35c..0fcdcb9 100644 (file)
@@ -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 13e6446..0ccadca 100644 (file)
@@ -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 {