示例

struct MyStruct {

unsigned char field:2;

};

解决方案
位字段只能使用整型。

struct MyStruct {

unsigned int field:2;
 

};