gedare marked 2 inline comments as done. gedare added inline comments.
================ Comment at: clang/lib/Format/TokenAnnotator.cpp:5006-5010 + return !((Previous && (Previous->is(tok::kw_for) || Previous->isIf())) || + (Right.Next && + (Right.Next->is(tok::l_paren) || + (Right.Next->is(tok::r_paren) && + (Right.NestingLevel == 0 || Previous->is(tok::star)))))); ---------------- HazardyKnusperkeks wrote: > This is horrible to read. > > Could you split this into multiple statements? Maybe with lambdas, I don't > know. > > But I have no intention to ever understand that condition. Sure. I was just following the prevailing style in this code base. I'll refactor. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D137762/new/ https://reviews.llvm.org/D137762 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits