diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2018-05-26 14:34:49 +0000 |
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2018-05-26 14:34:49 +0000 |
| commit | 5d63a10f0c7474015fc748bc3fed03cc620b6f20 (patch) | |
| tree | 23cf6f6a02af28a0cf0712d5a15eee0e71ec9769 /lldb/source/Core | |
| parent | c9edc0cfe27bae09689f46efcac7d580a8b67032 (diff) | |
| download | bcm5719-llvm-5d63a10f0c7474015fc748bc3fed03cc620b6f20.tar.gz bcm5719-llvm-5d63a10f0c7474015fc748bc3fed03cc620b6f20.zip | |
Forward declare DumpValueObjectOptions in ValueObject.h
Summary: This resolves unnecessary the header dependency from
Core to DataFormatters. Patch is necessary for the introduction of
C++ modules to the LLDB build system.
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D47409
llvm-svn: 333342
Diffstat (limited to 'lldb/source/Core')
| -rw-r--r-- | lldb/source/Core/ValueObject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 275be93e18e..244ea2936fb 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -19,6 +19,7 @@ #include "lldb/Core/ValueObjectMemory.h" #include "lldb/Core/ValueObjectSyntheticFilter.h" #include "lldb/DataFormatters/DataVisualization.h" +#include "lldb/DataFormatters/DumpValueObjectOptions.h" // for DumpValueObj... #include "lldb/DataFormatters/FormatManager.h" // for FormatManager #include "lldb/DataFormatters/StringPrinter.h" #include "lldb/DataFormatters/TypeFormat.h" // for TypeFormatImpl_F... |

