aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/CFRefCount.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-04-29 22:25:52 +0000
committerTed Kremenek <kremenek@apple.com>2009-04-29 22:25:52 +0000
commit8987a02fa1da1dfe0553bb35d00e2d8e381ed416 (patch)
treedb83e56f55df6a21898230f3179c39d5f10ed463 /lib/Analysis/CFRefCount.cpp
parent0c74e8a4e8865ec9ebb8efc0af247a3c077236c4 (diff)
Format cleanup. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70420 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r--lib/Analysis/CFRefCount.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index 315bdcf689..81017211a6 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/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());
}