From: Craig Topper Date: Sat, 14 Nov 2015 18:16:02 +0000 (+0000) Subject: Minor formatting fixes. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a069ee22bb057e0fefa2b70141f7feb17da2a2be;p=clang Minor formatting fixes. NFC git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253135 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseObjc.cpp b/lib/Parse/ParseObjc.cpp index 698c38f9c3..4df5802be6 100644 --- a/lib/Parse/ParseObjc.cpp +++ b/lib/Parse/ParseObjc.cpp @@ -916,7 +916,7 @@ void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) { // getter/setter require extra treatment. unsigned DiagID = IsSetter ? diag::err_objc_expected_equal_for_setter : - diag::err_objc_expected_equal_for_getter; + diag::err_objc_expected_equal_for_getter; if (ExpectAndConsume(tok::equal, DiagID)) { SkipUntil(tok::r_paren, StopAtSemi); @@ -931,7 +931,6 @@ void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) { return cutOffParsing(); } - SourceLocation SelLoc; IdentifierInfo *SelIdent = ParseObjCSelectorPiece(SelLoc);