diff options
author | Enrico Granata <egranata@apple.com> | 2015-12-01 00:04:52 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-12-01 00:04:52 +0000 |
commit | 7aafb6a1d55b6c813a7ba13df48bb71c64ca44d2 (patch) | |
tree | 668ac5271978ef42cd5c1904b3f847a1793b9c95 /lldb/source/DataFormatters/ValueObjectPrinter.cpp | |
parent | fa1917c673aee79943eeca1319ebb6bcb0f1229f (diff) | |
download | bcm5719-llvm-7aafb6a1d55b6c813a7ba13df48bb71c64ca44d2.tar.gz bcm5719-llvm-7aafb6a1d55b6c813a7ba13df48bb71c64ca44d2.zip |
Fix a bug where one-lining display of child values would ignore the user's choice of format
llvm-svn: 254349
Diffstat (limited to 'lldb/source/DataFormatters/ValueObjectPrinter.cpp')
-rw-r--r-- | lldb/source/DataFormatters/ValueObjectPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/DataFormatters/ValueObjectPrinter.cpp b/lldb/source/DataFormatters/ValueObjectPrinter.cpp index 4289496c8ff..04c29128354 100644 --- a/lldb/source/DataFormatters/ValueObjectPrinter.cpp +++ b/lldb/source/DataFormatters/ValueObjectPrinter.cpp @@ -839,7 +839,7 @@ ValueObjectPrinter::PrintChildrenOneLiner (bool hide_names) } child_sp->DumpPrintableRepresentation(*m_stream, ValueObject::eValueObjectRepresentationStyleSummary, - lldb::eFormatInvalid, + m_options.m_format, ValueObject::ePrintableRepresentationSpecialCasesDisable); } } |