With GCC, I could do packing of enums using attribute((packed)), but it seems the closest thing in MSVC, #pragma pack, does not work on enums. Does anyone know of a way to pack enums into 1 byte instead of the usual integer size?
|
|
|||||||||
|
|
|
This is MSVC specific:
For reference see here: MSDN -> enum |
||||||||||||||
|
