[cfe-commits] r71847 - /cfe/trunk/lib/Analysis/CFRefCount.cpp
Ted Kremenek
kremenek at apple.com
Thu May 14 23:02:09 PDT 2009
Author: kremenek
Date: Fri May 15 01:02:08 2009
New Revision: 71847
URL: http://llvm.org/viewvc/llvm-project?rev=71847&view=rev
Log:
Remove extra whitespace character in string literal. Purely cosmetic.
Modified:
cfe/trunk/lib/Analysis/CFRefCount.cpp
Modified: cfe/trunk/lib/Analysis/CFRefCount.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CFRefCount.cpp?rev=71847&r1=71846&r2=71847&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/CFRefCount.cpp (original)
+++ cfe/trunk/lib/Analysis/CFRefCount.cpp Fri May 15 01:02:08 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 cfe-commits
mailing list