Care and Feeding of Enum Flags
Maybe you've been looking at some C++ in the debugger not too long ago and happened across some enum flags on an object in your codebase. However, rather than a friendly display of the individual flags present, you just got an unfriendly hex value. Lame. The problem is that your…