[llvm-branch-commits] [cfe-branch] r71866 - /cfe/branches/Apple/Dib/lib/Analysis/CFRefCount.cpp
Mike Stump
mrs at apple.com
Fri May 15 09:19:30 PDT 2009
Author: mrs
Date: Fri May 15 11:19:21 2009
New Revision: 71866
URL: http://llvm.org/viewvc/llvm-project?rev=71866&view=rev
Log:
Merge in 71847:
Remove extra whitespace character in string literal. Purely cosmetic.
Modified:
cfe/branches/Apple/Dib/lib/Analysis/CFRefCount.cpp
Modified: cfe/branches/Apple/Dib/lib/Analysis/CFRefCount.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/Dib/lib/Analysis/CFRefCount.cpp?rev=71866&r1=71865&r2=71866&view=diff
==============================================================================
--- cfe/branches/Apple/Dib/lib/Analysis/CFRefCount.cpp (original)
+++ cfe/branches/Apple/Dib/lib/Analysis/CFRefCount.cpp Fri May 15 11:19:21 2009
@@ -3415,7 +3415,7 @@
std::string sbuf;
llvm::raw_string_ostream os(sbuf);
- os << "Object over-autoreleased: object was sent -autorelease " ;
+ os << "Object over-autoreleased: object was sent -autorelease";
if (V.getAutoreleaseCount() > 1)
os << V.getAutoreleaseCount() << " times";
os << " but the object has ";
More information about the llvm-branch-commits
mailing list