[clang-format] Parse __attribute((foo)) as a pointer qualifier
Before: void f() { MACRO(A * __attribute((foo)) a); } After: void f() { MACRO(A *__attribute((foo)) a); } Also check that the __attribute__ alias is handled. Reviewed By: MyDeveloperDay Differential Revision: https://reviews.llvm.org/D86711
Loading
Please sign in to comment