diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-03-27 21:45:11 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-03-27 21:45:11 +0000 |
commit | 9a6c757252409796d0fc7add064aace61e706968 (patch) | |
tree | 26f3ceba97c1119e52c84e056bb22894adf672bd /lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp | |
parent | 2abbe2f09119ccad8ad96841ea4632a9c8a8f04d (diff) | |
download | bcm5719-llvm-9a6c757252409796d0fc7add064aace61e706968.tar.gz bcm5719-llvm-9a6c757252409796d0fc7add064aace61e706968.zip |
[Python] Remove unused includes
llvm-svn: 357126
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp index 62421238fb0..759fbd01ce1 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp @@ -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; |