I'd like to be able to do this in C++ standard compilers:
void DoSomething(Object* object) { }
DoSomething(&Object())
With the default address operator, it'll save that constructed object to a register and then overwrite it in DoSomething()... Would be really nice to do this in one line for all objects (except base types where you can't override them).
So here's what I have:
class Object
{
public:
Object* operator&(Object object) { return &object; }
};
Which will obviously just be a recurring loop without being able to specify I want the basic & operator, not the overriden one. It's also not being called when I call DoSomething(&Object()). Is this possible? It would make initializing complex types WAY easier so it's kind of important.