diff options
author | Enrico Granata <egranata@apple.com> | 2015-07-28 02:13:03 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-07-28 02:13:03 +0000 |
commit | d29116331d89902aea9a5c71c284a09043a991e9 (patch) | |
tree | 7ed7b25e6fd7a80d51e23cf2dd56dac9ad892b7c /lldb/source/DataFormatters/FormatManager.cpp | |
parent | fda20d94e7f84537d5c71a3e14ee851f8a022268 (diff) | |
download | bcm5719-llvm-d29116331d89902aea9a5c71c284a09043a991e9.tar.gz bcm5719-llvm-d29116331d89902aea9a5c71c284a09043a991e9.zip |
There is no reason why this formatter should not cascade. Make it cascade
llvm-svn: 243369
Diffstat (limited to 'lldb/source/DataFormatters/FormatManager.cpp')
-rw-r--r-- | lldb/source/DataFormatters/FormatManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/DataFormatters/FormatManager.cpp b/lldb/source/DataFormatters/FormatManager.cpp index 4e0fffbe6a1..d10c59b853b 100644 --- a/lldb/source/DataFormatters/FormatManager.cpp +++ b/lldb/source/DataFormatters/FormatManager.cpp @@ -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) |