The easiest solution is to add a snippet of code that compiles only if it's what you expected:
template
void SomeManager::Add(T t)
{
assert((Base const*)&t); // T must inherit from Base to allow T*->Base* conversion.
t.CallTsBaseClassFunction();
//... do other stuff
}