diff options
author | Zachary Turner <zturner@google.com> | 2015-03-03 23:11:11 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-03-03 23:11:11 +0000 |
commit | a78bd7ffc1814c404a492213075996c06e16c368 (patch) | |
tree | 7403f0aa0f992f4db375beaaf01b79d8ba29273d /lldb/source/API/SBTarget.cpp | |
parent | c38d7952b2ac8fe73ee82f11019b12b07a739520 (diff) | |
download | bcm5719-llvm-a78bd7ffc1814c404a492213075996c06e16c368.tar.gz bcm5719-llvm-a78bd7ffc1814c404a492213075996c06e16c368.zip |
Don't #include FormatManager.h from Debugger.h
Debugger.h is a huge file that gets included everywhere, and
FormatManager.h brings in a ton of unnecessary stuff and doesn't
even use anything from it in the header.
llvm-svn: 231161
Diffstat (limited to 'lldb/source/API/SBTarget.cpp')
-rw-r--r-- | lldb/source/API/SBTarget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/API/SBTarget.cpp b/lldb/source/API/SBTarget.cpp index b67d12ebe5a..7b0f6f2fb18 100644 --- a/lldb/source/API/SBTarget.cpp +++ b/lldb/source/API/SBTarget.cpp @@ -47,11 +47,14 @@ #include "lldb/Host/FileSpec.h" #include "lldb/Host/Host.h" #include "lldb/Interpreter/Args.h" +#include "lldb/Symbol/ClangASTContext.h" +#include "lldb/Symbol/DeclVendor.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/SymbolVendor.h" #include "lldb/Symbol/VariableList.h" #include "lldb/Target/ABI.h" #include "lldb/Target/LanguageRuntime.h" +#include "lldb/Target/ObjCLanguageRuntime.h" #include "lldb/Target/Process.h" #include "lldb/Target/Target.h" #include "lldb/Target/TargetList.h" |