Don't use a bitfield for this.
It pads out to an int anyhow, but causes code bloat as the compiler tries to mask and shift for that specific bit.
Showing
Please register or sign in to comment
It pads out to an int anyhow, but causes code bloat as the compiler tries to mask and shift for that specific bit.