[PATCH] D127873: [clang-format] Fix misplacement of `*` in declaration of pointer to struct

Ben Smith via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Aug 11 17:30:28 PDT 2022


binji added a comment.

This change seems to have also regressed code like this:

  // before
  bool b = 3 == int{3} && true;
  // after
  bool b = 3 == int{3}&& true;

I suppose a similar fix to the one done for multiply should be done for `&&` too?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D127873



More information about the cfe-commits mailing list