I'm creating a set of enum values, but I need each enum value to be 64 bits wide. If I recall correctly, an enum is generally the same size as an int; but I thought I read somewhere that (at least in GCC) the compiler can make the enum any width they need to be to hold their values. So, is it possible to have an enum that is 64 bits wide?
|
|
An |
||
|
|
|
|
Taken from the current C Standard (C99): http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf
Not that compilers are any good at following the standard, but essentially: If your enum holds anything else than an int, you're in deep "unsupported behavior that may come back biting you in a year or two" territory. |
||||||
|
|
|
Yes, that's exactly right. An enum is at least as big as needed to hold the values. (Actually the size needed to hold all the value OR'd together, but that's usually the same as the size of the largest) |
||
|
