forked from OSchip/llvm-project
clang-format: Solve issues found and fixed by clang-tidy.
llvm-svn: 205193
This commit is contained in:
parent
3c95744de8
commit
240dfda352
|
@ -230,7 +230,7 @@ unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline,
|
|||
SourceMgr.getSpellingColumnNumber(
|
||||
State.NextToken->WhitespaceRange.getBegin());
|
||||
State.Column += WhitespaceLength;
|
||||
moveStateToNextToken(State, DryRun, /*NewLine=*/false);
|
||||
moveStateToNextToken(State, DryRun, /*Newline=*/false);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -1219,7 +1219,7 @@ void UnwrappedLineParser::parseRecord() {
|
|||
Style.BreakBeforeBraces == FormatStyle::BS_GNU)
|
||||
addUnwrappedLine();
|
||||
|
||||
parseBlock(/*MustBeDeclaration=*/true, /*Addlevel=*/true,
|
||||
parseBlock(/*MustBeDeclaration=*/true, /*AddLevel=*/true,
|
||||
/*MunchSemi=*/false);
|
||||
}
|
||||
// We fall through to parsing a structural element afterwards, so
|
||||
|
|
Loading…
Reference in New Issue