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;


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to