forked from OSchip/llvm-project
Add the missing '='. NFC.
This commit is contained in:
parent
7add6b6b73
commit
f3a3db8627
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue