How to automatically convert strongly typed enum into int? #include <iostream> struct a { enum LOCAL_A { A1, A2 }; }; enum class b { B1, B2 }; int foo(int input) { return input; } int main(void) {... May 26, 2022 0 Comments