vote up 0 vote down star

Can any one please tell, whether below is legal c++ or not ?

template < typename s , s & (*fn) ( s * ) > 
class c {};

// partial specialization

template < typename s , s & (*fn) ( s * ) > 
class c < s*, s* & (*fn)(s**)  {};

g++ ( 4.2.4) error: a function call cannot appear in a constant-expression error: template argument 2 is invalid

Although it does work for explicit specialization

int & func ( int * ) { return 0; }
template <> class c < int , func> class c {};
flag
Your 2nd code snippet is missing a trailing ">" BTW. – j_random_hacker May 19 at 13:15

1 Answer

vote up 7 vote down check

I think you mean

template < typename s , s & (*fn) ( s * ) > 
class c {};

// partial specialization
template < typename s , s & (*fn) ( s * ) > 
class c < s*, fn >  {};
link|flag
Actually, I want to specialize second argument on the basis of first type ? Does it make sense ? – Shaikh Amjad May 21 at 9:55
1  
@Shaikh: That's exactly what James's answer does. What's confusing you? – j_random_hacker May 22 at 3:12
thumbs up! :) – Shaikh Amjad May 22 at 15:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.