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/CommandObjectWatchpoint.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/CommandObjectWatchpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpoint.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp index 6f15c09c3f1..b42e74c11bf 100644 --- a/lldb/source/Commands/CommandObjectWatchpoint.cpp +++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp @@ -27,6 +27,7 @@ #include "lldb/Interpreter/CommandCompletions.h" #include "lldb/Symbol/Variable.h" #include "lldb/Symbol/VariableList.h" +#include "lldb/Target/StackFrame.h" #include "lldb/Target/Target.h" #include "llvm/ADT/StringRef.h" |