summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2015-11-14 00:58:21 +0000
committerEnrico Granata <egranata@apple.com>2015-11-14 00:58:21 +0000
commit6f6f7396ba3b29c00d424e4d19c452e49b16bcfa (patch)
treeec8746ab3be74fe764b1c04968c1118b1a534eb8 /lldb/source/Commands
parentfb484cedb4f095fc43285b14f2d6c3a209922fa7 (diff)
downloadbcm5719-llvm-6f6f7396ba3b29c00d424e4d19c452e49b16bcfa.tar.gz
bcm5719-llvm-6f6f7396ba3b29c00d424e4d19c452e49b16bcfa.zip
Minor cleanup to the type format list command
llvm-svn: 253110
Diffstat (limited to 'lldb/source/Commands')
-rw-r--r--lldb/source/Commands/CommandObjectType.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectType.cpp b/lldb/source/Commands/CommandObjectType.cpp
index 26f2b6bf892..8669c03a6e5 100644
--- a/lldb/source/Commands/CommandObjectType.cpp
+++ b/lldb/source/Commands/CommandObjectType.cpp
@@ -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;
OpenPOWER on IntegriCloud