]> granicus.if.org Git - clang/commitdiff
fix 80 col violation
authorChris Lattner <sabre@nondot.org>
Tue, 28 Aug 2007 06:17:15 +0000 (06:17 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 28 Aug 2007 06:17:15 +0000 (06:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41533 91177308-0d34-0410-b5e6-96231b3b80d8

Sema/SemaDecl.cpp

index 98ed30f4c644156fd987160c01750de22db0bd93..20aedec163cdf33534900d977fe69a0873679d63 100644 (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;
   }