Hacker News new | ask | show | jobs
by _0w8t 2724 days ago
For cases when performance matters one can replace the members with a stab of the same size and alignment and cast the the stab to the real defition in the implementation.
1 comments

Ugh, that violates strict aliasing, does it not?
I suppose it can, but in practice it works with any sane compiler that reasonably deals with reinterpret_cast and aliasing as long as aliasing requirements for the stub and the real thing are the same. The latter can be enforced with static asserts.