[cfe-commits] r70420 - /cfe/trunk/lib/Analysis/CFRefCount.cpp
Ted Kremenek
kremenek at apple.com
Wed Apr 29 15:25:52 PDT 2009
Author: kremenek
Date: Wed Apr 29 17:25:52 2009
New Revision: 70420
URL: http://llvm.org/viewvc/llvm-project?rev=70420&view=rev
Log:
Format cleanup. No functionality change.
Modified:
cfe/trunk/lib/Analysis/CFRefCount.cpp
Modified: cfe/trunk/lib/Analysis/CFRefCount.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CFRefCount.cpp?rev=70420&r1=70419&r2=70420&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/CFRefCount.cpp (original)
+++ cfe/trunk/lib/Analysis/CFRefCount.cpp Wed Apr 29 17:25:52 2009
@@ -2451,12 +2451,11 @@
<< MD.getSelector().getAsString()
<< "') does not contain 'copy' or otherwise starts with"
" 'new' or 'alloc'. This violates the naming convention rules given"
- " in the Memory Management Guide for Cocoa (object leaked).";
+ " in the Memory Management Guide for Cocoa (object leaked)";
}
else
os << " is no longer referenced after this point and has a retain count of"
- " +"
- << RV->getCount() << " (object leaked).";
+ " +" << RV->getCount() << " (object leaked)";
return new PathDiagnosticEventPiece(L, os.str());
}
More information about the cfe-commits
mailing list