Tagged Questions
0
votes
5answers
2k views
Coercing template class with operator T* when passing as T* argument of a function template
Assume I have a function template like this:
template<class T>
inline
void
doStuff(T* arr)
{
// stuff that needs to use sizeof(T)
}
Then in another .h filee I have a template class Foo that ...