Correct indentation.
authorChristoph Mallon <christoph.mallon@gmx.de>
Fri, 20 Nov 2009 12:05:12 +0000 (12:05 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Fri, 20 Nov 2009 12:05:12 +0000 (12:05 +0000)
[r26731]

parser.c

index d260050..5e06cde 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -8109,14 +8109,14 @@ static bool is_lvalue(const expression_t *expression)
                return true;
 
        default: {
-         type_t *type = skip_typeref(expression->base.type);
-         return
-               /* ISO/IEC 14882:1998(E) §3.10:3 */
-               is_type_reference(type) ||
-               /* Claim it is an lvalue, if the type is invalid.  There was a parse
-                * error before, which maybe prevented properly recognizing it as
-                * lvalue. */
-               !is_type_valid(type);
+               type_t *type = skip_typeref(expression->base.type);
+               return
+                       /* ISO/IEC 14882:1998(E) §3.10:3 */
+                       is_type_reference(type) ||
+                       /* Claim it is an lvalue, if the type is invalid.  There was a parse
+                        * error before, which maybe prevented properly recognizing it as
+                        * lvalue. */
+                       !is_type_valid(type);
        }
        }
 }