]> granicus.if.org Git - clang/commitdiff
Format cleanup. No functionality change.
authorTed Kremenek <kremenek@apple.com>
Wed, 29 Apr 2009 22:25:52 +0000 (22:25 +0000)
committerTed Kremenek <kremenek@apple.com>
Wed, 29 Apr 2009 22:25:52 +0000 (22:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70420 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/CFRefCount.cpp

index 315bdcf689996126722613eea542d29de6cf0c12..81017211a6008881bb2563edc4b4f9624d393552 100644 (file)
@@ -2451,12 +2451,11 @@ CFRefLeakReport::getEndPath(BugReporter& br, const ExplodedNode<GRState>* EndN){
     << 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());
 }