From: Christoph Mallon Date: Fri, 20 Nov 2009 12:05:12 +0000 (+0000) Subject: Correct indentation. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=853c4c59c67930035ac59bd2bffbfa8a8c21b767;p=cparser Correct indentation. [r26731] --- diff --git a/parser.c b/parser.c index d260050..5e06cde 100644 --- 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); } } }