diff options
author | Greg Clayton <gclayton@apple.com> | 2011-02-05 02:56:16 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-02-05 02:56:16 +0000 |
commit | 95e314260e7ae45fb099dc37cfaeeaddda676911 (patch) | |
tree | e50998d5ef52f031d98b0d98089696d09b026d32 /lldb/source/Interpreter/ScriptInterpreterPython.cpp | |
parent | ceb4671ddde9a670dfc43b900937223a3386a493 (diff) | |
download | bcm5719-llvm-95e314260e7ae45fb099dc37cfaeeaddda676911.tar.gz bcm5719-llvm-95e314260e7ae45fb099dc37cfaeeaddda676911.zip |
Header patch, virtual dtor patch and missed UUID patch from Kirk Beitz.
llvm-svn: 124931
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreterPython.cpp | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index 0ebc095f57b..61bab4851cf 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -8,19 +8,11 @@ //===----------------------------------------------------------------------===// // In order to guarantee correct working with Python, Python.h *MUST* be -// the *FIRST* header file included: - -#if defined (__APPLE__) -#include <Python/Python.h> -#else -#include <Python.h> -#endif +// the *FIRST* header file included in ScriptInterpreterPython.h, and that +// must be the *FIRST* header file included here. #include "lldb/Interpreter/ScriptInterpreterPython.h" - -#include <sys/ioctl.h> -#include <termios.h> #include <stdlib.h> #include <stdio.h> @@ -28,20 +20,12 @@ #include "lldb/API/SBFrame.h" #include "lldb/API/SBBreakpointLocation.h" -#include "lldb/Breakpoint/Breakpoint.h" -#include "lldb/Breakpoint/BreakpointLocation.h" #include "lldb/Breakpoint/StoppointCallbackContext.h" #include "lldb/Core/Debugger.h" -#include "lldb/Core/FileSpec.h" -#include "lldb/Core/InputReader.h" -#include "lldb/Core/Stream.h" -#include "lldb/Core/StreamString.h" #include "lldb/Core/Timer.h" #include "lldb/Host/Host.h" #include "lldb/Interpreter/CommandInterpreter.h" #include "lldb/Interpreter/CommandReturnObject.h" -#include "lldb/Core/Debugger.h" -#include "lldb/Target/Process.h" #include "lldb/Target/Thread.h" // This function is in the C++ output file generated by SWIG after it is |