[PATCH] D147989: [clang] Fix Attribute Placement

Aaron Ballman via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 24 12:05:09 PDT 2023


aaron.ballman accepted this revision.
aaron.ballman added a comment.
This revision is now accepted and ready to land.

Do you need someone to land this on your behalf? If so, what name and email address would you like used for patch attribution? (I can fix the tiny style nit myself when landing, so don't feel obligated to make the change yourself unless you're committing the patch.)



================
Comment at: clang/lib/Sema/SemaDecl.cpp:5045
+        return 5;
+      else if (ED->isScoped())
+        return 6;
----------------
Tiny style nit; NFC (we have a rule about using `else` after a `return`).


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D147989



More information about the cfe-commits mailing list