From c97c20446a42dc9e9df6eb225307d9174a34f1bc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 3 Oct 2007 22:03:06 +0000 Subject: [PATCH] minor cleanup git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42596 91177308-0d34-0410-b5e6-96231b3b80d8 --- Parse/ParseExpr.cpp | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Parse/ParseExpr.cpp b/Parse/ParseExpr.cpp index 6bdde19032..4608898d99 100644 --- a/Parse/ParseExpr.cpp +++ b/Parse/ParseExpr.cpp @@ -174,8 +174,8 @@ Parser::ExprResult Parser::ParseExpression() { /// This routine is called when the '@' is seen and consumed. /// Current token is an Identifier and is not a 'try'. This -/// routine is necessary to disambiguate @try-statement from -/// ,for example, @encode-expression. +/// routine is necessary to disambiguate @try-statement from, +/// for example, @encode-expression. /// Parser::ExprResult Parser::ParseExpressionWithLeadingAt(SourceLocation &AtLoc) { ExprResult LHS = ParseObjCExpression(AtLoc); @@ -600,13 +600,12 @@ Parser::ExprResult Parser::ParseCastExpression(bool isUnaryExpression) { case tok::kw_reinterpret_cast: case tok::kw_static_cast: return ParseCXXCasts(); - case tok::at: - { - SourceLocation AtLoc = ConsumeToken(); - return ParseObjCExpression(AtLoc); - } + case tok::at: { + SourceLocation AtLoc = ConsumeToken(); + return ParseObjCExpression(AtLoc); + } case tok::l_square: - return ParseObjCMessageExpression (); + return ParseObjCMessageExpression(); default: Diag(Tok, diag::err_expected_expression); return ExprResult(true); -- 2.40.0