The summary for const char* was not cascading.
This was preventing us from providing a summary for the result of std::string.c_str() with libc++
llvm-svn: 175841
diff --git a/lldb/source/DataFormatters/FormatManager.cpp b/lldb/source/DataFormatters/FormatManager.cpp
index 52986cf..d0471f4 100644
--- a/lldb/source/DataFormatters/FormatManager.cpp
+++ b/lldb/source/DataFormatters/FormatManager.cpp
@@ -675,7 +675,7 @@
{
TypeSummaryImpl::Flags string_flags;
- string_flags.SetCascades(false)
+ string_flags.SetCascades(true)
.SetSkipPointers(true)
.SetSkipReferences(false)
.SetDontShowChildren(true)