http://d.puremagic.com/issues/show_bug.cgi?id=8545
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |INVALID --- Comment #2 from Walter Bright <[email protected]> 2012-08-12 21:50:50 PDT --- I don't think this is major, because you can use a union: { static union U { Object o; void* p; } U u; u.o = this; return u.p; } In fact, because a union can be used for reinterpret casting, I don't think any new syntax or semantics are needed. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
