Name two bool parameters. No behavior change.

llvm-svn: 323228
This commit is contained in:
Nico Weber 2018-01-23 17:29:41 +00:00
parent 6e4d53bc2b
commit 47867e34e0
1 changed files with 2 additions and 1 deletions

View File

@ -441,7 +441,8 @@ struct FormatToken {
}
prec::Level getPrecedence() const {
return getBinOpPrecedence(Tok.getKind(), true, true);
return getBinOpPrecedence(Tok.getKind(), /*GreaterThanIsOperator=*/true,
/*CPlusPlus11=*/true);
}
/// \brief Returns the previous token ignoring comments.