From 9709ebfaf0d9b6fb4a59c6edf6edd286ed63c2b2 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Tue, 8 Jul 2014 23:54:25 +0000 Subject: [PATCH] rewrap to 80 cols, no behavior change llvm-svn: 212578 --- clang/lib/Sema/SemaInit.cpp | 3 ++- clang/lib/Sema/SemaType.cpp | 10 +++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/clang/lib/Sema/SemaInit.cpp b/clang/lib/Sema/SemaInit.cpp index c147034ed509..a33724a29701 100644 --- a/clang/lib/Sema/SemaInit.cpp +++ b/clang/lib/Sema/SemaInit.cpp @@ -6652,7 +6652,8 @@ bool InitializationSequence::Diagnose(Sema &S, Args.back()->getLocEnd()); if (Failure == FK_ListConstructorOverloadFailed) { - assert(Args.size() == 1 && "List construction from other than 1 argument."); + assert(Args.size() == 1 && + "List construction from other than 1 argument."); InitListExpr *InitList = cast(Args[0]); Args = MultiExprArg(InitList->getInits(), InitList->getNumInits()); } diff --git a/clang/lib/Sema/SemaType.cpp b/clang/lib/Sema/SemaType.cpp index ff48ebc53fd3..be1191c1e8e0 100644 --- a/clang/lib/Sema/SemaType.cpp +++ b/clang/lib/Sema/SemaType.cpp @@ -2395,9 +2395,9 @@ static void warnAboutAmbiguousFunction(Sema &S, Declarator &D, } if (FTI.NumParams > 0) { - // For a declaration with parameters, eg. "T var(T());", suggest adding parens - // around the first parameter to turn the declaration into a variable - // declaration. + // For a declaration with parameters, eg. "T var(T());", suggest adding + // parens around the first parameter to turn the declaration into a + // variable declaration. SourceRange Range = FTI.Params[0].Param->getSourceRange(); SourceLocation B = Range.getBegin(); SourceLocation E = S.getLocForEndOfToken(Range.getEnd()); @@ -2407,8 +2407,8 @@ static void warnAboutAmbiguousFunction(Sema &S, Declarator &D, << FixItHint::CreateInsertion(B, "(") << FixItHint::CreateInsertion(E, ")"); } else { - // For a declaration without parameters, eg. "T var();", suggest replacing the - // parens with an initializer to turn the declaration into a variable + // For a declaration without parameters, eg. "T var();", suggest replacing + // the parens with an initializer to turn the declaration into a variable // declaration. const CXXRecordDecl *RD = RT->getAsCXXRecordDecl();