Is there a way to have a 64 bit enum in C++? Whilst refactoring some code I came across bunch of #defines which would be better as an enum, but being greater than 32 bit ca
In MSVC++ you can do this:
enum MYLONGLONGENUM:__int64 { BIG_KEY=0x3034303232303330, ... };