[clang] [APINotes] Upstream Sema logic to apply API Notes to decls (PR #73017)

Egor Zhdan via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 15 06:14:19 PST 2024


================
@@ -301,6 +301,9 @@ class VariadicEnumArgument<string name, string type, list<string> values,
   bit IsExternalType = isExternalType;
 }
 
+// Represents an attribute wrapped by another attribute.
+class AttrArgument<string name, bit opt = 0> : Argument<name, opt>;
----------------
egorzhdan wrote:

Makes sense to me! Renamed to `WrappedAttr` to match the rest of the classes here.

https://github.com/llvm/llvm-project/pull/73017


More information about the cfe-commits mailing list