From: Ted Kremenek Date: Fri, 15 May 2009 06:02:08 +0000 (+0000) Subject: Remove extra whitespace character in string literal. Purely cosmetic. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=daec145780d80ea56a8df21182212c396941b58d;p=clang Remove extra whitespace character in string literal. Purely cosmetic. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71847 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index 4b2c394c88..67b364496b 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -3415,7 +3415,7 @@ CFRefCount::HandleAutoreleaseCounts(GRStateRef state, GenericNodeBuilder Bd, 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 ";