Compiler Warning (level 1) C4832
Visual Studio 2005
Error Message
token 'token' is illegal after UDT 'type name'A member of a UDT (user-defined type, such a class or struct) was qualified incorrectly. The compiler issues this warning and proceeds as if the qualification was specified correctly.
The following sample generates C4832:
// C4832.cpp
// compile with: /W1
struct A {
enum { e };
};
int main() {
return A.e; // C4832
// try the following line instead
// return A::e;
}