From e25e566eeba80e57952ac945aaaf348b44022de4 Mon Sep 17 00:00:00 2001 From: Jacob Carlborg Date: Thu, 13 Dec 2012 21:54:21 +0100 Subject: [PATCH] Remove empty newlines. --- src/parse.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/parse.c b/src/parse.c index a9926010c65a..f7b974e32df0 100644 --- a/src/parse.c +++ b/src/parse.c @@ -379,7 +379,6 @@ Dsymbols *Parser::parseDeclDefs(int once) s = new UserAttributeDeclaration(exps, a); break; } - else if (peek(&token)->value == TOKidentifier) { if (isPredefinedAttribute(peek(&token)->ident)) @@ -387,21 +386,16 @@ Dsymbols *Parser::parseDeclDefs(int once) stc = parseAttribute(); goto Lstc; } - else { nextToken(); - Expressions* exprs = new Expressions(); Expression* expr = parsePrimaryExp(); - if (token.value == TOKlparen) expr = new CallExp(loc, expr, parseArguments()); - exprs->push(expr); a = parseBlock(); s = new UserAttributeDeclaration(exprs, a); - break; } }