diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-10 08:54:30 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-10 11:16:52 -0800 |
commit | 59998b7b7f12c867062a4b61579511ad6c0ca144 (patch) | |
tree | 16c55c2623826dd24e5f18fbe2a4c1417c9efe2e /lldb/source/Commands/CommandObjectFrame.cpp | |
parent | e81268d03e73aef4f9c7bd8ece8ad02f5b017dcf (diff) | |
download | llvm-59998b7b7f12c867062a4b61579511ad6c0ca144.zip llvm-59998b7b7f12c867062a4b61579511ad6c0ca144.tar.gz llvm-59998b7b7f12c867062a4b61579511ad6c0ca144.tar.bz2 |
[lldb/Host] Use Host/Config.h entries instead of a global define.
As suggested by Pavel in a code review:
> Can we replace this (and maybe python too, while at it) with a
> Host/Config.h entry? A global definition means that one has to
> recompile everything when these change in any way, whereas in
> practice only a handful of files need this..
Differential revision: https://reviews.llvm.org/D71280
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectFrame.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp index 4eef444..d743900 100644 --- a/lldb/source/Commands/CommandObjectFrame.cpp +++ b/lldb/source/Commands/CommandObjectFrame.cpp @@ -14,6 +14,7 @@ #include "lldb/Core/ValueObjectVariable.h" #include "lldb/DataFormatters/DataVisualization.h" #include "lldb/DataFormatters/ValueObjectPrinter.h" +#include "lldb/Host/Config.h" #include "lldb/Host/Host.h" #include "lldb/Host/OptionParser.h" #include "lldb/Host/StringConvert.h" |