You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The order of bit field members in C is implementation defined and for gcc it's defined by the ABI.
We should add a block like this, in case someone wants to add Aarch64 support or the like:
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
// order as above
#else
// reverse order
#endif
The text was updated successfully, but these errors were encountered:
Suggested by minipli:
The order of bit field members in C is implementation defined and for gcc it's defined by the ABI.
We should add a block like this, in case someone wants to add Aarch64 support or the like:
The text was updated successfully, but these errors were encountered: