unexpected-flag-enumerator-value
July 27, 2021 ยท View on GitHub
Checks enums that are used as flag, for example:
enum Foo {
A = 0x1,
B = 0x2,
C = 0x4,
D = 0x9 // Oops, typo
};
and checks whether all enumeration values are power of 2 or not.