[Lldb-commits] [lldb] r357126 - [Python] Remove unused includes
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 27 14:45:11 PDT 2019
Author: jdevlieghere
Date: Wed Mar 27 14:45:11 2019
New Revision: 357126
URL: http://llvm.org/viewvc/llvm-project?rev=357126&view=rev
Log:
[Python] Remove unused includes
Modified:
lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
Modified: lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp?rev=357126&r1=357125&r2=357126&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp (original)
+++ lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp Wed Mar 27 14:45:11 2019
@@ -20,13 +20,12 @@
#include "lldb/Interpreter/ScriptInterpreter.h"
#include "lldb/Utility/Stream.h"
+#include "llvm/ADT/StringSwitch.h"
#include "llvm/Support/ConvertUTF.h"
#include "llvm/Support/Errno.h"
#include <stdio.h>
-#include "llvm/ADT/StringSwitch.h"
-
using namespace lldb_private;
using namespace lldb;
Modified: lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h?rev=357126&r1=357125&r2=357126&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h (original)
+++ lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h Wed Mar 27 14:45:11 2019
@@ -14,13 +14,8 @@
// LLDB Python header must be included first
#include "lldb-python.h"
-#include "lldb/Utility/Flags.h"
-
#include "lldb/Host/File.h"
-#include "lldb/Interpreter/OptionValue.h"
-#include "lldb/Utility/ConstString.h"
#include "lldb/Utility/StructuredData.h"
-#include "lldb/lldb-defines.h"
#include "llvm/ADT/ArrayRef.h"
Modified: lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp?rev=357126&r1=357125&r2=357126&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp (original)
+++ lldb/trunk/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp Wed Mar 27 14:45:11 2019
@@ -19,16 +19,8 @@
#include "PythonExceptionState.h"
#include "ScriptInterpreterPython.h"
-#include <stdio.h>
-#include <stdlib.h>
-
-#include <memory>
-#include <mutex>
-#include <string>
-
#include "lldb/API/SBValue.h"
#include "lldb/API/SBFrame.h"
-#include "lldb/Breakpoint/BreakpointLocation.h"
#include "lldb/Breakpoint/StoppointCallbackContext.h"
#include "lldb/Breakpoint/WatchpointOptions.h"
#include "lldb/Core/Communication.h"
@@ -54,6 +46,12 @@
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/FileSystem.h"
+#include <memory>
+#include <mutex>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string>
+
using namespace lldb;
using namespace lldb_private;
More information about the lldb-commits
mailing list