cplusplus / nbballot

Handling of NB comments in response to ballots
14 stars 4 forks source link

JP006 20.7.4 p3 struct vs. class for variant_alternative #382

Closed jensmaurer closed 3 years ago

jensmaurer commented 3 years ago

Since the variant_alternative is a struct type, “class" in the following definition should be changed to “struct”. template<size_t I, class T> class variant_alternative<I, const T>;

Change “class” to “struct” as follows: template<size_t I, class T> struct variant_alternative<I, const T>;

tkoeppe commented 3 years ago

Final disposition: Accepted.