I could swear the syntax is correct. I played around and changed class into typename. Still no go.

How do i write this so the 2nd function template kicks in?

#include <iostream>

template<typename T, typename TT> void fn(T t, TT tt) { std::cout<<"general"<<std::endl; }
template<> void fn<T, bool>(T t, bool tt) { std::cout<<"bool"<<std::endl; }
int main(){
    fn("", "");
    fn("", true);
}
link|improve this question

74% accept rate
On specializations of function templates also see Why Not Specialize Function Templates? – sth Feb 14 at 19:00
feedback

1 Answer

up vote 8 down vote accepted

There are no partial specializations of function templates. Just use overloading instead:

template<typename T> void fn(T t, bool tt) { std::cout<<"bool"<<std::endl; }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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