Add the missing '='. NFC.

This commit is contained in:
Michael Liao 2020-05-02 01:07:44 -04:00
parent 7add6b6b73
commit f3a3db8627
1 changed files with 2 additions and 2 deletions

View File

@ -1471,7 +1471,7 @@ void UnwrappedLineParser::parseStructuralElement() {
} else if (Style.Language == FormatStyle::LK_Proto && } else if (Style.Language == FormatStyle::LK_Proto &&
FormatTok->Tok.is(tok::less)) { FormatTok->Tok.is(tok::less)) {
nextToken(); nextToken();
parseBracedList(/*ContinueOnSemicolons=*/false, /*IsEnum*/false, parseBracedList(/*ContinueOnSemicolons=*/false, /*IsEnum=*/false,
/*ClosingBraceKind=*/tok::greater); /*ClosingBraceKind=*/tok::greater);
} }
break; break;
@ -1824,7 +1824,7 @@ bool UnwrappedLineParser::parseBracedList(bool ContinueOnSemicolons,
case tok::less: case tok::less:
if (Style.Language == FormatStyle::LK_Proto) { if (Style.Language == FormatStyle::LK_Proto) {
nextToken(); nextToken();
parseBracedList(/*ContinueOnSemicolons=*/false, /*IsEnum*/false, parseBracedList(/*ContinueOnSemicolons=*/false, /*IsEnum=*/false,
/*ClosingBraceKind=*/tok::greater); /*ClosingBraceKind=*/tok::greater);
} else { } else {
nextToken(); nextToken();