[PATCH] D121756: [clang-format] Clean up code looking for if statements

sstwcw via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Mar 21 16:29:18 PDT 2022


sstwcw marked 2 inline comments as done.
sstwcw added a comment.

It turned out this patch does change behavior.

  -  while (
  -      FormatTok->isOneOf(tok::identifier, tok::kw_requires, tok::coloncolon)) {
  +  while (FormatTok->isOneOf(tok::identifier, tok::kw_requires,
  +                            tok::coloncolon)) {

So what do I do?

And what's the regression suite?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D121756/new/

https://reviews.llvm.org/D121756



More information about the cfe-commits mailing list