From d6bef2edab08f803e7ca333a938ad90b7b83977f Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 29 Apr 2009 22:25:52 +0000 Subject: [PATCH] Format cleanup. No functionality change. llvm-svn: 70420 --- clang/lib/Analysis/CFRefCount.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/clang/lib/Analysis/CFRefCount.cpp b/clang/lib/Analysis/CFRefCount.cpp index 315bdcf68999..81017211a600 100644 --- a/clang/lib/Analysis/CFRefCount.cpp +++ b/clang/lib/Analysis/CFRefCount.cpp @@ -2451,12 +2451,11 @@ CFRefLeakReport::getEndPath(BugReporter& br, const ExplodedNode* 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()); }