C++ Idiom : Address-of | Get address of object of overloaded ‘&’ operator
Intent To get the address of object of a class that have overloaded ‘&’ operator that do not return real address of object
Side Note The idiom presented in this article is no longer needed to be hand written on the compiler that supports at least c++11 standard. More tested std::addressof() in header <memory> …