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/Commands/CommandObjectQuit.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/Commands/CommandObjectQuit.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectQuit.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectQuit.cpp b/lldb/source/Commands/CommandObjectQuit.cpp index dd0efc61b2d..3386d4e5cb1 100644 --- a/lldb/source/Commands/CommandObjectQuit.cpp +++ b/lldb/source/Commands/CommandObjectQuit.cpp @@ -17,6 +17,7 @@ // Project includes #include "lldb/Interpreter/CommandInterpreter.h" #include "lldb/Interpreter/CommandReturnObject.h" +#include "lldb/Target/Process.h" using namespace lldb; using namespace lldb_private; |