Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'identifier' : bit field cannot have indirection
The bit field was declared as a pointer, which is not allowed.
The following sample generates C2033:
// C2033.cpp
struct S {
int *b : 1; // C2033
};
Possible resolution:
// C2033b.cpp
// compile with: /c
struct S {
int b : 1;
};