[Lldb-commits] [lldb] r336212 - Fix MSVC2015 compilation failure after r336206 patch.

Alexander Polyakov via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 3 09:07:30 PDT 2018


Author: apolyakov
Date: Tue Jul  3 09:07:30 2018
New Revision: 336212

URL: http://llvm.org/viewvc/llvm-project?rev=336212&view=rev
Log:
Fix MSVC2015 compilation failure after r336206 patch.

Added missing headers.

Modified:
    lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp

Modified: lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp?rev=336212&r1=336211&r2=336212&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp (original)
+++ lldb/trunk/tools/lldb-mi/MICmdCmdSymbol.cpp Tue Jul  3 09:07:30 2018
@@ -11,6 +11,12 @@
 
 // Third Party Headers:
 #include "llvm/ADT/Twine.h"
+#include "lldb/API/SBAddress.h"
+#include "lldb/API/SBLineEntry.h"
+#include "lldb/API/SBFileSpec.h"
+#include "lldb/API/SBCompileUnit.h"
+#include "lldb/API/SBSymbolContext.h"
+#include "lldb/API/SBSymbolContextList.h"
 
 // In-house headers:
 #include "MICmdArgValFile.h"




More information about the lldb-commits mailing list