Say I have a templated class like
template struct Node { // general method split void split() { // ... actual code her
Just define some
template<> void Node::split() { }
after the primary template, but before the first time you ever instantiate it.