aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectArgs.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2015-03-03 23:11:11 +0000
committerZachary Turner <zturner@google.com>2015-03-03 23:11:11 +0000
commita78bd7ffc1814c404a492213075996c06e16c368 (patch)
tree7403f0aa0f992f4db375beaaf01b79d8ba29273d /lldb/source/Commands/CommandObjectArgs.cpp
parentc38d7952b2ac8fe73ee82f11019b12b07a739520 (diff)
downloadllvm-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/Commands/CommandObjectArgs.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectArgs.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectArgs.cpp b/lldb/source/Commands/CommandObjectArgs.cpp
index 58d8fca..a156d55 100644
--- a/lldb/source/Commands/CommandObjectArgs.cpp
+++ b/lldb/source/Commands/CommandObjectArgs.cpp
@@ -25,6 +25,7 @@
#include "lldb/Host/Host.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandReturnObject.h"
+#include "lldb/Symbol/ClangASTContext.h"
#include "lldb/Symbol/ObjectFile.h"
#include "lldb/Symbol/Variable.h"
#include "lldb/Target/ABI.h"