[Lldb-commits] [lldb] r230106 - Don't use:
Greg Clayton
gclayton at apple.com
Fri Feb 20 16:39:13 PST 2015
Author: gclayton
Date: Fri Feb 20 18:39:13 2015
New Revision: 230106
URL: http://llvm.org/viewvc/llvm-project?rev=230106&view=rev
Log:
Don't use:
#include <lldb/API/*>"
Please use:
#include "lldb/API/*"
Modified:
lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp
lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.h
Modified: lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp?rev=230106&r1=230105&r2=230106&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp (original)
+++ lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp Fri Feb 20 18:39:13 2015
@@ -20,7 +20,7 @@
//--
// Third Party Headers:
-#include <lldb/API/SBCommandInterpreter.h>
+#include "lldb/API/SBCommandInterpreter.h"
// In-house headers:
#include "MICmdArgValFile.h"
Modified: lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.h?rev=230106&r1=230105&r2=230106&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.h (original)
+++ lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.h Fri Feb 20 18:39:13 2015
@@ -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"
More information about the lldb-commits
mailing list