From: Chris Lattner Date: Mon, 20 Oct 2008 02:01:34 +0000 (+0000) Subject: fix indentation X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31c286803c60c59d314525e047d0e72f9a1cb55b;p=clang fix indentation git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57788 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/Parser.cpp b/lib/Parse/Parser.cpp index fa4bdfafb7..1b3adb95c0 100644 --- a/lib/Parse/Parser.cpp +++ b/lib/Parse/Parser.cpp @@ -505,8 +505,9 @@ Parser::DeclTy *Parser::ParseFunctionDefinition(Declarator &D) { // declaration-specifiers are completely optional in the grammar. if (getLang().ImplicitInt && D.getDeclSpec().getParsedSpecifiers() == 0) { const char *PrevSpec; - D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int, D.getIdentifierLoc(), - PrevSpec); + D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int, + D.getIdentifierLoc(), + PrevSpec); } // If this declaration was formed with a K&R-style identifier list for the