[cfe-commits] r154077 - /cfe/trunk/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp

Anna Zaks ganna at apple.com
Wed Apr 4 19:10:19 PDT 2012


Author: zaks
Date: Wed Apr  4 21:10:19 2012
New Revision: 154077

URL: http://llvm.org/viewvc/llvm-project?rev=154077&view=rev
Log:
[analyzer] Change warding in a path diagnostic:
"No method actually called because receiver is nil" ->
"No method is called because receiver is nil"

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

Modified: cfe/trunk/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp?rev=154077&r1=154076&r2=154077&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp Wed Apr  4 21:10:19 2012
@@ -393,7 +393,7 @@
   // Issue a message saying that the method was skipped.
   PathDiagnosticLocation L(Receiver, BRC.getSourceManager(),
                                      N->getLocationContext());
-  return new PathDiagnosticEventPiece(L, "No method actually called "
+  return new PathDiagnosticEventPiece(L, "No method is called "
       "because the receiver is nil");
 }
 





More information about the cfe-commits mailing list