diff options
| author | Jason Molenda <jmolenda@apple.com> | 2012-05-16 00:38:08 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2012-05-16 00:38:08 +0000 |
| commit | 7a9a72b42379fd33576d837060602cc095f3edc7 (patch) | |
| tree | 5bc174d73bad32dceb194ecbab6eb3be27fadbc3 /lldb/source/Core/ValueObject.cpp | |
| parent | 29412d1c5cddc51c08fe59b8f17541c4be648e67 (diff) | |
| download | bcm5719-llvm-7a9a72b42379fd33576d837060602cc095f3edc7.tar.gz bcm5719-llvm-7a9a72b42379fd33576d837060602cc095f3edc7.zip | |
Add LLDB_DISABLE_PYTHON around newly added methods in
DataVisualization.h / DataVisualization.cpp / ValueObject.cpp
and
FormatManager.h / FormatManager.cpp
llvm-svn: 156886
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
| -rw-r--r-- | lldb/source/Core/ValueObject.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index cd41f1d689f..4d8610fb222 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -250,7 +250,9 @@ ValueObject::UpdateFormatsIfNeeded(DynamicValueType use_dynamic) { SetValueFormat(DataVisualization::ValueFormats::GetFormat (*this, eNoDynamicValues)); SetSummaryFormat(DataVisualization::GetSummaryFormat (*this, use_dynamic)); +#ifndef LLDB_DISABLE_PYTHON SetSyntheticChildren(DataVisualization::GetSyntheticChildren (*this, use_dynamic)); +#endif m_last_format_mgr_revision = DataVisualization::GetCurrentRevision(); m_last_format_mgr_dynamic = use_dynamic; |

