I\'m basically trying to do what was discussed in Template specialization of a single method from a templated class except that my TClass has multiple template Parameters li
You have to specialize the entire class before you define a method through a partial specialization:
template class TClass; template class TClass { void doSomething(int* v); }; template void TClass::doSomething(int* v) { // ... }
Live demo