Remove F_COMBINE
Now I wonder if any bots will be unhappy we calling | in static const initializations... Or would that cost runtime init? Our tests don't detect any..
This commit is contained in:
parent
f048ead84a
commit
70136a78cb
|
@ -177,8 +177,6 @@ enum hb_ot_map_feature_flags_t
|
|||
F_RANDOM = 0x0020u /* Randomly select a glyph from an AlternateSubstFormat1 subtable. */
|
||||
};
|
||||
HB_MARK_AS_FLAG_T (hb_ot_map_feature_flags_t);
|
||||
/* Macro version for where const is desired. */
|
||||
#define F_COMBINE(l,r) (hb_ot_map_feature_flags_t ((unsigned int) (l) | (unsigned int) (r)))
|
||||
|
||||
struct hb_ot_map_feature_t
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue