minor cleanup



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42596 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Parse/ParseExpr.cpp b/Parse/ParseExpr.cpp
index 6bdde19..4608898 100644
--- a/Parse/ParseExpr.cpp
+++ b/Parse/ParseExpr.cpp
@@ -174,8 +174,8 @@
 
 /// 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 @@
   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);