Compiler Error C2033
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2033.
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;
};
Show: