Don't use:
authorGreg Clayton <gclayton@apple.com>
Sat, 21 Feb 2015 00:39:13 +0000 (00:39 +0000)
committerGreg Clayton <gclayton@apple.com>
Sat, 21 Feb 2015 00:39:13 +0000 (00:39 +0000)
#include <lldb/API/*>"

Please use:

#include "lldb/API/*"

llvm-svn: 230106

lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
lldb/tools/lldb-mi/MICmdCmdSymbol.h

index 5655d84..f735ac0 100644 (file)
@@ -20,7 +20,7 @@
 //--
 
 // Third Party Headers:
-#include <lldb/API/SBCommandInterpreter.h>
+#include "lldb/API/SBCommandInterpreter.h"
 
 // In-house headers:
 #include "MICmdArgValFile.h"
index 1f0bd16..6e7d874 100644 (file)
@@ -31,7 +31,7 @@
 #pragma once
 
 // Third party headers:
-#include <lldb/API/SBCommandReturnObject.h>
+#include "lldb/API/SBCommandReturnObject.h"
 
 // In-house headers:
 #include "MICmdBase.h"