[PATCH] D110833: [clang-format] Refactor SpaceBeforeParens to add options

MyDeveloperDay via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 29 00:45:03 PST 2021


MyDeveloperDay added a comment.

I'm looking at a bug (sorry can't log it as we don't seem to have a working bug tracker!) that causes a regression on `operator new(` and `operator delete(` which I believe I've tracked to this change

v12

  ~foo() { ::operator delete(bar); }
  
  ::operator delete(bar)

after this change, (space between delete and (bar) when at function depth, but not at global)

  ~foo() { ::operator delete (bar); }
  
  ::operator delete(bar)


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

https://reviews.llvm.org/D110833



More information about the cfe-commits mailing list