Enumerations
-
Why don't the enumeration objects get recognized unless the enumeration is defined in the same header file where the enumeration object is created? If the enumeration is in a different header file I get an "Error C3646 'PC': unknown override specifier " error. I`m including the header file where enumeration is defined in the header where the enum object is created.
-
Why don't the enumeration objects get recognized unless the enumeration is defined in the same header file where the enumeration object is created? If the enumeration is in a different header file I get an "Error C3646 'PC': unknown override specifier " error. I`m including the header file where enumeration is defined in the header where the enum object is created.
[Compiler Error C3646 | Microsoft Learn](https://learn.microsoft.com/en-us/cpp/error-messages/compiler-errors-2/compiler-error-c3646?view=msvc-170)
-
[Compiler Error C3646 | Microsoft Learn](https://learn.microsoft.com/en-us/cpp/error-messages/compiler-errors-2/compiler-error-c3646?view=msvc-170)
Thank you Victor. I will change the object name to lower caps and see if the error goes away