I really want to be able to do this in my code, but this error: redefinition of enumerator 'TEST'
enum test1 {
TEST
};
enum test2 {
TEST
};
Is there a way to get around this since I really want the same names inside the different enums. Also why is this happening?