[Lldb-commits] [lldb] r253110 - Minor cleanup to the type format list command
Enrico Granata via lldb-commits
lldb-commits at lists.llvm.org
Fri Nov 13 16:58:21 PST 2015
Author: enrico
Date: Fri Nov 13 18:58:21 2015
New Revision: 253110
URL: http://llvm.org/viewvc/llvm-project?rev=253110&view=rev
Log:
Minor cleanup to the type format list command
Modified:
lldb/trunk/source/Commands/CommandObjectType.cpp
Modified: lldb/trunk/source/Commands/CommandObjectType.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectType.cpp?rev=253110&r1=253109&r2=253110&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectType.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectType.cpp Fri Nov 13 18:58:21 2015
@@ -1372,9 +1372,9 @@ private:
cate->GetTypeFormatsContainer()->LoopThrough(CommandObjectTypeFormatList_LoopCallback, param_vp);
- if (cate->GetRegexTypeSummariesContainer()->GetCount() > 0)
+ if (cate->GetRegexTypeFormatsContainer()->GetCount() > 0)
{
- result->GetOutputStream().Printf("Regex-based summaries (slower):\n");
+ result->GetOutputStream().Printf("Regex-based formats (slower):\n");
cate->GetRegexTypeFormatsContainer()->LoopThrough(CommandObjectTypeRXFormatList_LoopCallback, param_vp);
}
return true;
More information about the lldb-commits
mailing list