diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-04-29 22:25:52 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-04-29 22:25:52 +0000 |
commit | d6bef2edab08f803e7ca333a938ad90b7b83977f (patch) | |
tree | 4aae7c6338fe0169e7b82f0528b533346f7e801c /clang/lib | |
parent | 0cfbdab0cf8adc00d5f0dae665e0f35c510be383 (diff) | |
download | bcm5719-llvm-d6bef2edab08f803e7ca333a938ad90b7b83977f.tar.gz bcm5719-llvm-d6bef2edab08f803e7ca333a938ad90b7b83977f.zip |
Format cleanup. No functionality change.
llvm-svn: 70420
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Analysis/CFRefCount.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/Analysis/CFRefCount.cpp b/clang/lib/Analysis/CFRefCount.cpp index 315bdcf6899..81017211a60 100644 --- a/clang/lib/Analysis/CFRefCount.cpp +++ b/clang/lib/Analysis/CFRefCount.cpp @@ -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()); } |