Skip to content

Commit 7b31ef5

Browse files
committed
tbs
1 parent 858d3e1 commit 7b31ef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Parse/ParseRegex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ ParserResult<Expr> Parser::parseExprRegexLiteral() {
4747
auto capturesBuf = Context.AllocateUninitialized<uint8_t>(
4848
RegexLiteralExpr::getCaptureStructureSerializationAllocationSize(
4949
regexText.size()));
50-
5150
bool hadError =
5251
regexLiteralParsingFn(regexText.str().c_str(), &version,
5352
/*captureStructureOut*/ capturesBuf.data(),
@@ -56,6 +55,7 @@ ParserResult<Expr> Parser::parseExprRegexLiteral() {
5655
getBridgedDiagnosticEngine(&Diags));
5756
auto loc = consumeToken();
5857
SourceMgr.recordRegexLiteralStartLoc(loc);
58+
5959
if (hadError) {
6060
return makeParserResult(new (Context) ErrorExpr(loc));
6161
}

0 commit comments

Comments
 (0)