On Sunday, 13 March 2016 at 16:16:55 UTC, MGW wrote:
void* thisAddr = cast(void*) &this;

This doesn't really make sense anyway, this is a local variable, you want to do cast(void*) this in a class if you need the address (which btw, you shouldn't actually, the reference itself ought to be enough)

Reply via email to