[PATCH] D107961: [clang-format] Distinguish K&R C function definition and attribute

MyDeveloperDay via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Aug 13 00:29:44 PDT 2021


MyDeveloperDay added a comment.

Did the original change make it into the 13 branch? I'm seeing some unexpected behavior.

  bool foo(int a, Bar) override;
  bool foo(int a, Bar) override; // comment

becomes

  bool foo(int a, Bar)
  override;
  bool foo(int a, Bar)
  override; // comment


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

https://reviews.llvm.org/D107961



More information about the cfe-commits mailing list