diff options
author | Michael Liao <michael.hliao@gmail.com> | 2019-12-03 16:02:55 -0500 |
---|---|---|
committer | Michael Liao <michael.hliao@gmail.com> | 2019-12-03 16:02:55 -0500 |
commit | 59e69fefab883984e81c77aef58ba587060e87f2 (patch) | |
tree | 675a6eb7141494ad63fad5987b8f088ffe125135 | |
parent | 859bf4d2bea2404bd2eac92451f2db4371ec6eb4 (diff) | |
download | bcm5719-llvm-59e69fefab883984e81c77aef58ba587060e87f2.tar.gz bcm5719-llvm-59e69fefab883984e81c77aef58ba587060e87f2.zip |
Fix warning on extra ';'. NFC.
-rw-r--r-- | clang/lib/Format/TokenAnnotator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp index 93cb36961ee..d5d394e6192 100644 --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -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, |