
17 Apr
2007
17 Apr
'07
8:59 p.m.
On Apr 17, 2007, at 3:42 PM, Marco wrote:
I try to dare something more, now. Has it been taken in consideration to provide a typedef type pack defined throught a template parameter pack ? That is, something like:
template< typename... Args > class { typedef typename Args::value_type value_types; // or the following more explicit syntax: // typedef... typename Args::value_type value_types;
void f( value_types... args );
};
Yes, it's been taken into consideration, but it does not work. - Doug