fix 80 col violation

llvm-svn: 41533
This commit is contained in:
Chris Lattner 2007-08-28 06:17:15 +00:00
parent b8a501ccf1
commit c4f6d0c5cf
1 changed files with 2 additions and 1 deletions

View File

@ -286,7 +286,8 @@ Sema::ParseDeclarator(Scope *S, Declarator &D, ExprTy *init,
// All of these full declarators require an identifier. If it doesn't have
// one, the ParsedFreeStandingDeclSpec action should be used.
if (II == 0) {
Diag(D.getDeclSpec().getSourceRange().Begin(), diag::err_declarator_need_ident,
Diag(D.getDeclSpec().getSourceRange().Begin(),
diag::err_declarator_need_ident,
D.getDeclSpec().getSourceRange(), D.getSourceRange());
return 0;
}