Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 {};
share|improve this question
Your 2nd code snippet is missing a trailing ">" BTW. – j_random_hacker May 19 '09 at 13:15

1 Answer

up vote 8 down vote accepted

I think you mean

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

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.