alexfh accepted this revision. alexfh added a comment. This revision is now accepted and ready to land.
Looks good with a nit. Thank you for the fix! ================ Comment at: clang-tidy/modernize/UseOverrideCheck.cpp:43 while (!RawLexer.LexFromRawLexer(Tok)) { - if (Tok.is(tok::semi) || Tok.is(tok::l_brace)) + if ((Tok.is(tok::semi) || Tok.is(tok::l_brace)) && !Parens) break; ---------------- s/!Parens/Parens == 0/ Maybe also change Parens to NestedParens or NestingLevel. Repository: rL LLVM https://reviews.llvm.org/D35078 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits