@@ -379,7 +379,7 @@ final class CParser(AST) : Parser!AST
379379 cparseDeclaration(LVL .local);
380380 if (symbols.length > 1 )
381381 {
382- auto as = AST .Statements() ;
382+ AST .Statements as ;
383383 as.reserve (symbols.length);
384384 foreach (d; (* symbols)[])
385385 {
@@ -421,7 +421,7 @@ final class CParser(AST) : Parser!AST
421421 * statement
422422 */
423423 nextToken();
424- auto statements = AST .Statements() ;
424+ AST .Statements statements ;
425425 while (token.value != TOK .rightCurly && token.value != TOK .endOfFile)
426426 {
427427 statements.push(cparseStatement(ParseStatementFlags.curlyScope));
@@ -570,7 +570,7 @@ final class CParser(AST) : Parser!AST
570570
571571 if (flags & ParseStatementFlags.curlyScope)
572572 {
573- auto statements = AST .Statements() ;
573+ AST .Statements statements ;
574574 while (token.value != TOK .case_ && token.value != TOK .default_ && token.value != TOK .endOfFile && token.value != TOK .rightCurly)
575575 {
576576 auto cur = cparseStatement(ParseStatementFlags.curlyScope);
@@ -605,7 +605,7 @@ final class CParser(AST) : Parser!AST
605605
606606 if (flags & ParseStatementFlags.curlyScope)
607607 {
608- auto statements = AST .Statements() ;
608+ AST .Statements statements ;
609609 while (token.value != TOK .case_ && token.value != TOK .default_ && token.value != TOK .endOfFile && token.value != TOK .rightCurly)
610610 {
611611 statements.push(cparseStatement(ParseStatementFlags.curlyScope));
@@ -2257,7 +2257,7 @@ final class CParser(AST) : Parser!AST
22572257 auto fd = new AST .FuncDeclaration(id.loc, prevloc, id.name, stc, ft, specifier.noreturn);
22582258 specifiersToFuncDeclaration(fd, specifier);
22592259
2260- auto stmts = AST .Statements() ;
2260+ AST .Statements stmts ;
22612261
22622262 if (addFuncName)
22632263 stmts.push(createFuncName(locFunc, id.name, Id.__func__));
@@ -3570,7 +3570,7 @@ final class CParser(AST) : Parser!AST
35703570 error(" string literal expected for Assembler Template, not `%s`" , token.toChars());
35713571 Token * toklist = null ;
35723572 Token ** ptoklist = &toklist;
3573- auto statements = AST .Statements() ;
3573+ AST .Statements statements ;
35743574
35753575 int parens;
35763576 while (1 )
0 commit comments