I see that the following is syntactically correct:
template<class T> bool operator<= (const T& left, const T& right)
{
...
}
But it seems that it is never called.
1
I see that the following is syntactically correct:
template<class T> bool operator<= (const T& left, const T& right)
{
...
}
But it seems that it is never called.
1