That should be
return X::template big< char >();
Dependent names from templates are taken to not be types unless you specify that they are via typename
and assumed to not be templates unless specified via template
.
That should be
return X::template big< char >();
Dependent names from templates are taken to not be types unless you specify that they are via typename
and assumed to not be templates unless specified via template
.