[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:54:14 PDT 2021
MyDeveloperDay added a comment.
FWIW with this additional fix is also still ok and doesn't revert the behaviour, but we'd have to land this in order for @tstellar to move it to the branch (and I think he said that needed to be done by Friday 13th)
bool foo(int a, Bar) override;
bool foo(int a, Bar) override; // comment
bool foo(int a, int) override;
bool foo(int a, Bar) final;
bool foo(int a, Bar) final; // comment
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107961/new/
https://reviews.llvm.org/D107961
More information about the cfe-commits
mailing list