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/Interpreter/CommandObject.cpp | |
parent | c38d7952b2ac8fe73ee82f11019b12b07a739520 (diff) | |
download | llvm-a78bd7ffc1814c404a492213075996c06e16c368.zip llvm-a78bd7ffc1814c404a492213075996c06e16c368.tar.gz llvm-a78bd7ffc1814c404a492213075996c06e16c368.tar.bz2 |
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/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index 753e720..021442e 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -25,6 +25,7 @@ // FIXME: Make a separate file for the completers. #include "lldb/Host/FileSpec.h" #include "lldb/Core/FileSpecList.h" +#include "lldb/DataFormatters/FormatManager.h" #include "lldb/Target/Process.h" #include "lldb/Target/Target.h" |