[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:
Behdad Esfahbod 2022-05-16 17:08:43 -06:00
parent a4d98b63ea
commit fb413f5202
1 changed files with 3 additions and 3 deletions

View File

@ -317,9 +317,9 @@ struct parsed_cs_op_t : op_str_t
unsigned int subr_num;
protected:
bool drop_flag : 1;
bool keep_flag : 1;
bool skip_flag : 1;
bool drop_flag;
bool keep_flag;
bool skip_flag;
};
struct parsed_cs_str_t : parsed_values_t<parsed_cs_op_t>