Skip to content

Commit f59b897

Browse files
committed
Fix my recently introduced 80-col violation
1 parent ff895d2 commit f59b897

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/Parse/ParseExpr.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,13 +1450,14 @@ ParserResult<Expr> Parser::parseExprStringLiteral() {
14501450
}
14511451
First = false;
14521452
}
1453-
1453+
14541454
if (Exprs.empty()) {
14551455
Status.setIsParseError();
14561456
return makeParserResult(Status, new (Context) ErrorExpr(Loc));
14571457
}
14581458

1459-
return makeParserResult(Status, new (Context) InterpolatedStringLiteralExpr(Loc, Context.AllocateCopy(Exprs)));
1459+
return makeParserResult(Status, new (Context) InterpolatedStringLiteralExpr(
1460+
Loc, Context.AllocateCopy(Exprs)));
14601461
}
14611462

14621463
void Parser::diagnoseEscapedArgumentLabel(const Token &tok) {

0 commit comments

Comments
 (0)