A
Angel Tsankov
How can an overloaded operator& take the address of its argument:
template<typename T>
Smth operator &(T& SomeObject)
{
// The address of SomeObject is needed here
}
template<typename T>
Smth operator &(T& SomeObject)
{
// The address of SomeObject is needed here
}