Skip to content

Commit ad0a1ec

Browse files
committed
fix: mention that it's a debug summary
1 parent a341b83 commit ad0a1ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1499,10 +1499,10 @@ static void LoadLibStdcppFormatters(lldb::TypeCategoryImplSP cpp_category_sp) {
14991499
"^std::(__debug::)?unordered_(multi)?(map|set)<.+> >$",
15001500
stl_summary_flags, true);
15011501

1502-
AddCXXSummary(
1503-
cpp_category_sp, lldb_private::formatters::ContainerSizeSummaryProvider,
1504-
"libstdc++ std::list summary provider",
1505-
"^std::__(debug|cxx11)::list<.+>(( )?&)?$", stl_summary_flags, true);
1502+
AddCXXSummary(cpp_category_sp, GenericCappedContainerSummaryProvider,
1503+
"libstdc++ debug std::list summary provider",
1504+
"^std::__(debug|cxx11)::list<.+>(( )?&)?$", stl_summary_flags,
1505+
true);
15061506

15071507
AddCXXSummary(cpp_category_sp, ContainerSizeSummaryProvider,
15081508
"libstdc++ std::forward_list summary provider",

0 commit comments

Comments
 (0)