rewrap to 80 cols, no behavior change

llvm-svn: 212578
This commit is contained in:
Nico Weber 2014-07-08 23:54:25 +00:00
parent 843c4cb401
commit 9709ebfaf0
2 changed files with 7 additions and 6 deletions

View File

@ -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<InitListExpr>(Args[0]);
Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
}

View File

@ -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();