I have something like this:
typedef int AnotherType; template <typename T> Func( T Value );
I do not need to specialize in int, I really need to execute another function for AnotherType. And I cannot change the definition of AnotherType or the base function.
Overloading does not help either because of SFINAE.
c ++ typedef templates specialization
Frigg
source share