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