◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2033 'identifier' : bit field cannot have indirection The given bit field was declared as a pointer (*), which is not allowed. The following is an example of this error: struct S { int *b : 1; // error }; -♦-