forked from microsoft/xlang
-
Couldn't load subscription status.
- Fork 2
FixedArgSig
Raymond Chen edited this page Apr 1, 2019
·
2 revisions
A xlang::meta::reader::FixedArgSig structure represents a single fixed argument in a custom attribute. See CustomAttributeSig for an example.
using value_type = std::variant<
ElemSig, // index 0
std::vector<ElemSig>>; // index 1The value of the FixedArgSig can be an ElemSig object (if the argument is a single value), or a vector or ElemSig objects (if the argument is an array).
value_type value;The value of the fixed argument.