diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2013-10-20 17:36:05 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2013-10-20 17:36:05 +0000 |
commit | e77b0424fdc42ccaa627f30d97b2307292ab036e (patch) | |
tree | f7e8e5bffb20c47312a58db21ab686a4ea7b3fdc /lldb/source/DataFormatters/FormatManager.cpp | |
parent | c5e53bd14a6300f19e821f044e16ba32b8465448 (diff) | |
download | bcm5719-llvm-e77b0424fdc42ccaa627f30d97b2307292ab036e.tar.gz bcm5719-llvm-e77b0424fdc42ccaa627f30d97b2307292ab036e.zip |
Fix python-free build.
llvm-svn: 193053
Diffstat (limited to 'lldb/source/DataFormatters/FormatManager.cpp')
-rw-r--r-- | lldb/source/DataFormatters/FormatManager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/DataFormatters/FormatManager.cpp b/lldb/source/DataFormatters/FormatManager.cpp index 1fa287281f3..615f07b761e 100644 --- a/lldb/source/DataFormatters/FormatManager.cpp +++ b/lldb/source/DataFormatters/FormatManager.cpp @@ -840,7 +840,9 @@ FormatManager::LoadSystemFormatters() sys_category_sp->GetSummaryNavigator()->Add(ConstString("unsigned char *"), string_format); sys_category_sp->GetRegexSummaryNavigator()->Add(any_size_char_arr, string_array_format); +#ifndef LLDB_DISABLE_PYTHON AddCXXSynthetic(sys_category_sp, FooStructSynth, "Foo synth", ConstString("Foo"), ScriptedSyntheticChildren::Flags(), false); +#endif lldb::TypeSummaryImplSP ostype_summary(new StringSummaryFormat(TypeSummaryImpl::Flags().SetCascades(false) .SetSkipPointers(true) |