For storing integers with bitwise operands inside their declaration, which should I use? Performance wise I think that an enumeration works slightly faster, however what's the standard?
A #define will be recalculated everytime rather than just a look up. This could account for enum being faster..but I would have thought const would have been the same.