[PATCH] PR libstdc++/86963 Implement LWG 2729 constraints on tuple assignment
Jonathan Wakely
jwakely@redhat.com
Fri Aug 17 18:01:00 GMT 2018
On 17/08/18 18:52 +0100, Jonathan Wakely wrote:
>+ // The tag parameter ensures that in nested tuples each __tuple_base
>+ // is a different type and can use the empty base-class optimisation.
>+ template<typename _Tag>
>+ class __tuple_base
Specifically, this would fail if __tuple_base was not a class
template:
static_assert(sizeof(tuple<tuple<int>>) == sizeof(int), "");
And also:
struct empty {};
static_assert(sizeof(tuple<tuple<empty>, tuple<empty>>) == 2, "");
More information about the Libstdc++
mailing list