[Lldb-commits] [lldb] r243369 - There is no reason why this formatter should not cascade. Make it cascade

Enrico Granata egranata at apple.com
Mon Jul 27 19:13:04 PDT 2015


Author: enrico
Date: Mon Jul 27 21:13:03 2015
New Revision: 243369

URL: http://llvm.org/viewvc/llvm-project?rev=243369&view=rev
Log:
There is no reason why this formatter should not cascade. Make it cascade

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=243369&r1=243368&r2=243369&view=diff
==============================================================================
--- lldb/trunk/source/DataFormatters/FormatManager.cpp (original)
+++ lldb/trunk/source/DataFormatters/FormatManager.cpp Mon Jul 27 21:13:03 2015
@@ -1157,7 +1157,7 @@ FormatManager::LoadSystemFormatters()
     .SetHideItemNames(false);
     
     TypeSummaryImpl::Flags string_array_flags;
-    string_array_flags.SetCascades(false)
+    string_array_flags.SetCascades(true)
     .SetSkipPointers(true)
     .SetSkipReferences(false)
     .SetDontShowChildren(true)





More information about the lldb-commits mailing list