Just curious. I wanted to do a bitmask for 8 values, but whenever I evaluate it, it always ends up being 32 bits. I tried
enum Foo {
A = quint8(0)
}
sizeof(A); // 4 bytes, 32 bits
sizeof(quint8(0)); // 1 byte, 8 bits
I thought because it was possible to make 64 bit enumerators, that the opposite was true, that you could make ones that were only 8 bits.
Is it possible?