Remove unused #includes of ScriptInterpreterPython.h
authorZachary Turner <zturner@google.com>
Thu, 28 May 2015 19:57:03 +0000 (19:57 +0000)
committerZachary Turner <zturner@google.com>
Thu, 28 May 2015 19:57:03 +0000 (19:57 +0000)
llvm-svn: 238470

lldb/include/lldb/API/SBBreakpointLocation.h
lldb/include/lldb/API/SBFrame.h
lldb/include/lldb/lldb-forward.h
lldb/source/Core/ValueObject.cpp
lldb/source/DataFormatters/FormatManager.cpp
lldb/source/DataFormatters/TypeSynthetic.cpp
lldb/source/Interpreter/CommandObject.cpp
lldb/source/Interpreter/ScriptInterpreter.cpp

index 06e1d93..ab70497 100644 (file)
@@ -101,9 +101,7 @@ public:
 
 private:
     friend class SBBreakpoint;
-#ifndef LLDB_DISABLE_PYTHON
-    friend class lldb_private::ScriptInterpreterPython;
-#endif
+
     void
     SetLocation (const lldb::BreakpointLocationSP &break_loc_sp);
 
index ee25928..912765e 100644 (file)
@@ -216,9 +216,6 @@ protected:
     friend class SBInstruction;
     friend class SBThread;
     friend class SBValue;
-#ifndef LLDB_DISABLE_PYTHON
-    friend class lldb_private::ScriptInterpreterPython;
-#endif
 
     lldb::StackFrameSP
     GetFrameSP() const;
index 04ffa59..e0c2ae4 100644 (file)
@@ -181,7 +181,6 @@ class   Scalar;
 class   ScriptInterpreter;
 class   ScriptInterpreterLocker;
 #ifndef LLDB_DISABLE_PYTHON
-class   ScriptInterpreterPython;
 struct  ScriptSummaryFormat;
 #endif
 class   SearchFilter;
index 1d40eab..22e61d0 100644 (file)
@@ -43,7 +43,6 @@
 #include "lldb/Host/Endian.h"
 
 #include "lldb/Interpreter/CommandInterpreter.h"
-#include "lldb/Interpreter/ScriptInterpreterPython.h"
 
 #include "lldb/Symbol/ClangASTType.h"
 #include "lldb/Symbol/ClangASTContext.h"
index 01dc8fa..1bcb299 100644 (file)
@@ -18,7 +18,6 @@
 
 #include "lldb/Core/Debugger.h"
 #include "lldb/DataFormatters/CXXFormatterFunctions.h"
-#include "lldb/Interpreter/ScriptInterpreterPython.h"
 #include "lldb/Target/ExecutionContext.h"
 #include "lldb/Target/Platform.h"
 #include "llvm/ADT/STLExtras.h"
index 1adde48..d4a147a 100644 (file)
@@ -23,7 +23,7 @@
 #include "lldb/Core/StreamString.h"
 #include "lldb/DataFormatters/TypeSynthetic.h"
 #include "lldb/Interpreter/CommandInterpreter.h"
-#include "lldb/Interpreter/ScriptInterpreterPython.h"
+#include "lldb/Interpreter/ScriptInterpreter.h"
 #include "lldb/Symbol/ClangASTType.h"
 #include "lldb/Target/StackFrame.h"
 #include "lldb/Target/Target.h"
index 29e4744..b4224fd 100644 (file)
@@ -31,8 +31,6 @@
 
 #include "lldb/Interpreter/CommandInterpreter.h"
 #include "lldb/Interpreter/CommandReturnObject.h"
-#include "lldb/Interpreter/ScriptInterpreter.h"
-#include "lldb/Interpreter/ScriptInterpreterPython.h"
 
 using namespace lldb;
 using namespace lldb_private;
index 1486905..8305a84 100644 (file)
@@ -19,7 +19,6 @@
 #include "lldb/Core/Stream.h"
 #include "lldb/Core/StringList.h"
 #include "lldb/Interpreter/CommandReturnObject.h"
-#include "lldb/Interpreter/ScriptInterpreterPython.h"
 #include "lldb/Utility/PseudoTerminal.h"
 
 using namespace lldb;