which IDE are you using? using VS2003 and VA 1539 I have added the code:
template <class XKey, class XValue, size_t XPrime>
class SomeClass
{
int SomeFunction(size_t SomeVariable, const XKey &Key, const XValue &Value)
{
/*...Code here...*/
}
};
void callTemplate()
{
SomeClass<std::string, std::string, 27> TestVar;
TestVar.SomeFunction(|)
}
to a cpp file, and I am seeing:
Am I doing something obviously different to you?