[Lldb-commits] [lldb] r178292 - <rdar://problem/12410225>

Enrico Granata egranata at apple.com
Thu Mar 28 14:36:58 PDT 2013


Author: enrico
Date: Thu Mar 28 16:36:58 2013
New Revision: 178292

URL: http://llvm.org/viewvc/llvm-project?rev=178292&view=rev
Log:
<rdar://problem/12410225>

By default, omit the children for a char[] and just show the string contents
Can be overridden by appropriate command-line flags

Modified:
    lldb/trunk/source/DataFormatters/FormatManager.cpp

Modified: lldb/trunk/source/DataFormatters/FormatManager.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/DataFormatters/FormatManager.cpp?rev=178292&r1=178291&r2=178292&view=diff
==============================================================================
--- lldb/trunk/source/DataFormatters/FormatManager.cpp (original)
+++ lldb/trunk/source/DataFormatters/FormatManager.cpp Thu Mar 28 16:36:58 2013
@@ -681,7 +681,7 @@ FormatManager::LoadSystemFormatters()
     lldb::TypeSummaryImplSP string_array_format(new StringSummaryFormat(TypeSummaryImpl::Flags().SetCascades(false)
                                                                         .SetSkipPointers(true)
                                                                         .SetSkipReferences(false)
-                                                                        .SetDontShowChildren(false)
+                                                                        .SetDontShowChildren(true)
                                                                         .SetDontShowValue(true)
                                                                         .SetShowMembersOneLiner(false)
                                                                         .SetHideItemNames(false),





More information about the lldb-commits mailing list