minor
This commit is contained in:
parent
5c46683ab8
commit
46ec6db965
|
@ -229,9 +229,7 @@ struct KerxSubTableFormat1
|
|||
|
||||
bool is_actionable (StateTableDriver<Types, EntryData> *driver HB_UNUSED,
|
||||
const Entry<EntryData> &entry)
|
||||
{
|
||||
return Format1EntryT::performAction (entry);
|
||||
}
|
||||
{ return Format1EntryT::performAction (entry); }
|
||||
void transition (StateTableDriver<Types, EntryData> *driver,
|
||||
const Entry<EntryData> &entry)
|
||||
{
|
||||
|
|
|
@ -213,8 +213,8 @@ struct hb_ot_map_builder_t
|
|||
{ add_feature (feat.tag, feat.flags); }
|
||||
|
||||
void enable_feature (hb_tag_t tag,
|
||||
hb_ot_map_feature_flags_t flags=F_NONE,
|
||||
unsigned int value=1)
|
||||
hb_ot_map_feature_flags_t flags=F_NONE,
|
||||
unsigned int value=1)
|
||||
{ add_feature (tag, F_GLOBAL | flags, value); }
|
||||
|
||||
void disable_feature (hb_tag_t tag)
|
||||
|
|
|
@ -114,7 +114,7 @@ struct cff1_top_dict_values_mod_t : cff1_top_dict_values_t
|
|||
struct top_dict_modifiers_t
|
||||
{
|
||||
top_dict_modifiers_t (const cff1_sub_table_info_t &info_,
|
||||
const unsigned int (&nameSIDs_)[name_dict_values_t::ValCount])
|
||||
const unsigned int (&nameSIDs_)[name_dict_values_t::ValCount])
|
||||
: info (info_),
|
||||
nameSIDs (nameSIDs_)
|
||||
{}
|
||||
|
|
Loading…
Reference in New Issue