diff options
| author | Keno Fischer <kfischer@college.harvard.edu> | 2015-10-16 05:21:23 +0000 |
|---|---|---|
| committer | Keno Fischer <kfischer@college.harvard.edu> | 2015-10-16 05:21:23 +0000 |
| commit | 8cd7d345080504b6717ee8dd0d49c2fb9a37cf65 (patch) | |
| tree | d2fd7b907d635b635318fda35ccf99325ce21efd /lldb/source/DataFormatters | |
| parent | 47db4a2c50c3e7190e279cec46a22842b96c9909 (diff) | |
| download | bcm5719-llvm-8cd7d345080504b6717ee8dd0d49c2fb9a37cf65.tar.gz bcm5719-llvm-8cd7d345080504b6717ee8dd0d49c2fb9a37cf65.zip | |
Fix build with python disabled after r249597
Summary: r249597 introduced a usage of GetTypeSummary in lldb-mi.
That function used to only be available when python is enabled.
However, there is no reason for that anymore since that is now
dealt with at a different abstraction layer.
Reviewers: ki.stfu, evgeny777, clayborg, granata.enrico
Subscribers: elehcim, brucem, lldb-commits
Differential Revision: http://reviews.llvm.org/D13577
llvm-svn: 250494
Diffstat (limited to 'lldb/source/DataFormatters')
| -rw-r--r-- | lldb/source/DataFormatters/TypeSummary.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/source/DataFormatters/TypeSummary.cpp b/lldb/source/DataFormatters/TypeSummary.cpp index ac7963a5d0c..31ecac57449 100644 --- a/lldb/source/DataFormatters/TypeSummary.cpp +++ b/lldb/source/DataFormatters/TypeSummary.cpp @@ -205,9 +205,6 @@ CXXFunctionSummaryFormat::GetDescription () return sstr.GetString(); } -#ifndef LLDB_DISABLE_PYTHON - - ScriptSummaryFormat::ScriptSummaryFormat (const TypeSummaryImpl::Flags& flags, const char * function_name, const char * python_script) : @@ -275,5 +272,3 @@ ScriptSummaryFormat::GetDescription () return sstr.GetString(); } - -#endif // #ifndef LLDB_DISABLE_PYTHON |

