Hi!
I'm using the following
Now I need to instantiate some implementations butCode:class MyOut { template<typename T> operator<<(T value); }gives a compiler error.Code:template operator<< <int>(int value);
So, how can I instantiate class template operators?




Reply With Quote