We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When generating enumerations for C++, is it possible to generate typed enumerations?
I mean to generate:
enum Color : uint8_t { BLUE = 0, GREEN = 1, ... }
instead of
enum Color { BLUE = (std::uint8_t)0, GREEN = (std::uint8_t)1, ... }