Remove extra space.

llvm-svn: 191246
This commit is contained in:
Fariborz Jahanian 2013-09-23 23:48:04 +00:00
parent 52ddfb3c16
commit 1a73b8f7d2
1 changed files with 1 additions and 1 deletions

View File

@ -304,7 +304,7 @@ static bool rewriteToObjCProperty(const ObjCMethodDecl *Getter,
}
PropertyString += " ";
PropertyString += RT.getAsString(Context.getPrintingPolicy());
char LastChar = PropertyString[PropertyString.size()-1] ;
char LastChar = PropertyString[PropertyString.size()-1];
if (LastChar != '*')
PropertyString += " ";
if (LengthOfPrefix > 0) {