Search Results

1
vote

c++ enum to unsigned int comparison

In fact, -1 is implicitly cast to its equivalente unsigned value when it is assigned to nextValue. The equivalente unsigned is the value with the same bitwise representation (which is 111111111111 …
4
votes

Is there a reason to use enum to define a single constant in C++ code?

The only reason for using the "enum hack" is that old compilers do not support in-class const definitions, as you say in your question. So, unless you suspect that your code will be ported to an o …