2008/11/19 Ben Elliston <[EMAIL PROTECTED]>:
>> Following (bit weird ;-) code shows weird case of variadic template
>> function specialization, however I am not sure it is legal, (atleast I
>> haven't found any wording that would prevent such use):
>
> This list is not really the place to discuss l
> Following (bit weird ;-) code shows weird case of variadic template
> function specialization, however I am not sure it is legal, (atleast I
> haven't found any wording that would prevent such use):
This list is not really the place to discuss language issues (unless you
think you've found a bug
Hello all,
Following (bit weird ;-) code shows weird case of variadic template
function specialization, however I am not sure it is legal, (atleast I
haven't found any wording that would prevent such use):
enum SelectFoo {S1, S2, S3};
struct A
{
template
void foo (Args_...);
};
template <>