Hacker Newsnew | past | comments | ask | show | jobs | submitlogin
Accessing inactive union members through char (sandordargo.com)
16 points by ibobev 4 months ago | hide | past | favorite | 3 comments


To add a little bit: the reason for that (or at least one of them) is strict aliasing rules: If the compiler had to assume that a write to an int* might change the value of a double&, that’ll cause it to avoid some optimization and maybe even perform expensive reads.

This is the reason that you are not allowed to alias a variable with another type (can be disabled using -fno-strict-aliasing) [1].

However, one of exceptions is char and std::byte. The compiler is not allowed to assume that a write to char& won’t affect the value of a double& for example [2].

[1]: https://www.gnu.org/software/c-intro-and-ref/manual/html_nod...

[2]: https://en.cppreference.com/w/cpp/language/reinterpret_cast....


To clarify: this is about inactive members of C++ union types, not inactive members of labor unions


If only it were that easy to grab a hold on some of those...




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: