Fix warning on extra ';'. NFC.

This commit is contained in:
Michael Liao 2019-12-03 16:02:55 -05:00
parent 859bf4d2be
commit 59e69fefab
1 changed files with 1 additions and 1 deletions

View File

@ -2597,7 +2597,7 @@ bool TokenAnnotator::spaceRequiredBeforeParens(const FormatToken &Right) const {
static bool isKeywordWithCondition(const FormatToken &Tok) {
return Tok.isOneOf(tok::kw_if, tok::kw_for, tok::kw_while, tok::kw_switch,
tok::kw_constexpr);
};
}
bool TokenAnnotator::spaceRequiredBetween(const AnnotatedLine &Line,
const FormatToken &Left,