[subset/cff] Don't use bitfields for hot bools
The struct has room because of alignment, and these bools are hot.
This commit is contained in:
parent
a4d98b63ea
commit
fb413f5202
|
@ -317,9 +317,9 @@ struct parsed_cs_op_t : op_str_t
|
||||||
unsigned int subr_num;
|
unsigned int subr_num;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool drop_flag : 1;
|
bool drop_flag;
|
||||||
bool keep_flag : 1;
|
bool keep_flag;
|
||||||
bool skip_flag : 1;
|
bool skip_flag;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct parsed_cs_str_t : parsed_values_t<parsed_cs_op_t>
|
struct parsed_cs_str_t : parsed_values_t<parsed_cs_op_t>
|
||||||
|
|
Loading…
Reference in New Issue