refactor: Treat ArgsManager::Flags as uint32_t explicitly

This commit is contained in:
MarcoFalke 2021-02-04 20:03:58 +01:00
parent ea5a50f92a
commit faf3b4b533
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548

View File

@ -166,7 +166,7 @@ struct SectionInfo
class ArgsManager
{
public:
enum Flags {
enum Flags : uint32_t {
// Boolean options can accept negation syntax -noOPTION or -noOPTION=1
ALLOW_BOOL = 0x01,
ALLOW_INT = 0x02,