[cfe-commits] r163487 - /cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp

Ted Kremenek kremenek at apple.com
Sun Sep 9 23:19:43 PDT 2012


Author: kremenek
Date: Mon Sep 10 01:19:43 2012
New Revision: 163487

URL: http://llvm.org/viewvc/llvm-project?rev=163487&view=rev
Log:
Indent the "message" key in analyzer plist output.

Modified:
    cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp

Modified: cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp?rev=163487&r1=163486&r2=163487&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp Mon Sep 10 01:19:43 2012
@@ -246,6 +246,7 @@
   // Output the short text.
   // FIXME: Really use a short string.
   Indent(o, indent) << "<key>message</key>\n";
+  Indent(o, indent);
   EmitString(o, P.getString()) << '\n';
   
   // Finish up.





More information about the cfe-commits mailing list