Why is enum class preferred over plain enum?
C++ has two kinds of enum: enum classes Plain enums Here are a couple of examples on how to declare them: What is the difference between the two? enum classes – enumerator names are local to the enum and their values do not implicitly convert to other types (like another enum or int) Plain enums … Read more