summaryrefslogtreecommitdiff
path: root/lldb/tools
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-01-02 22:38:16 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-01-02 22:38:16 +0000
commit14e2197741c3eeba3212da46b7f6fe0b6b20a0fb (patch)
treea0484641a6f3dbabc7f0520d850c44f7f3fbc3ef /lldb/tools
parent2f20f81066f7e965083f274c82934b84420e3643 (diff)
[Driver] Remove unused imports
Removes some unneeded includes from the driver.
Diffstat (limited to 'lldb/tools')
-rw-r--r--lldb/tools/driver/Driver.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lldb/tools/driver/Driver.cpp b/lldb/tools/driver/Driver.cpp
index 295273271e1..fa5d1b781e4 100644
--- a/lldb/tools/driver/Driver.cpp
+++ b/lldb/tools/driver/Driver.cpp
@@ -9,20 +9,13 @@
#include "Driver.h"
-#include "lldb/API/SBBreakpoint.h"
#include "lldb/API/SBCommandInterpreter.h"
#include "lldb/API/SBCommandReturnObject.h"
-#include "lldb/API/SBCommunication.h"
#include "lldb/API/SBDebugger.h"
-#include "lldb/API/SBEvent.h"
#include "lldb/API/SBHostOS.h"
#include "lldb/API/SBLanguageRuntime.h"
-#include "lldb/API/SBListener.h"
-#include "lldb/API/SBProcess.h"
#include "lldb/API/SBStream.h"
#include "lldb/API/SBStringList.h"
-#include "lldb/API/SBTarget.h"
-#include "lldb/API/SBThread.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/ConvertUTF.h"