
8 Aug
2011
8 Aug
'11
12:49 p.m.
I was wondering about the status of the above topic: Does a boost implementation of an adaptor exist or is Sebastian's suggestion the best alternative currently available? His solution did not work out of the box for me, since g++-4.6 complained about an "incomplete type std::tuple_size<const std::tuple<..." However, when I replaced each occurence of std::tuple_size<X> by std::tuple_size< typename std::remove_cv<X>::type > everything seemed to work fine. Regards Claas
No docs. Also, this is just for the MSVC 10 (no-variadics)
implementation. It was just something I hacked up quickly because I needed it for something internal.
Anyway, here it is.
Sebastian