]> granicus.if.org Git - clang/commitdiff
tidy whitespace.
authorChris Lattner <sabre@nondot.org>
Sat, 28 Mar 2009 06:13:37 +0000 (06:13 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 28 Mar 2009 06:13:37 +0000 (06:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67920 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseDecl.cpp

index b1cbc3cceb6d3e7535bda8fee1048e9935febee1..0ab7042f5eb12597a1b9038c8732bffbceac7e8d 100644 (file)
@@ -393,18 +393,19 @@ ParseInitDeclaratorListAfterFirstDeclarator(Declarator &D) {
   if (Tok.is(tok::semi)) {
     ConsumeToken();
     // for(is key; in keys) is error.
-    if (D.getContext()  == Declarator::ForContext && isTokIdentifier_in()) {
+    if (D.getContext() == Declarator::ForContext && isTokIdentifier_in()) {
       Diag(Tok, diag::err_parse_error);
       return 0;
     }
     return Actions.FinalizeDeclaratorGroup(CurScope, LastDeclInGroup);
   }
+  
   // If this is an ObjC2 for-each loop, this is a successful declarator
   // parse.  The syntax for these looks like:
   // 'for' '(' declaration 'in' expr ')' statement
-  if (D.getContext()  == Declarator::ForContext && isTokIdentifier_in()) {
+  if (D.getContext() == Declarator::ForContext && isTokIdentifier_in())
     return Actions.FinalizeDeclaratorGroup(CurScope, LastDeclInGroup);
-  }
+
   Diag(Tok, diag::err_parse_error);
   // Skip to end of block or statement
   SkipUntil(tok::r_brace, true, true);