'identifier' : ビット フィールドは間接参照できません
Remarks
ビット フィールドが、許可されていないポインターとして宣言されました。
Example
次の例では C2033 が生成されます。
// C2033.cpp
struct S {
int *b : 1; // C2033
};
Possible resolution:
// C2033b.cpp
// compile with: /c
struct S {
int b : 1;
};