This commit is contained in:
Ebrahim Byagowi 2020-07-22 17:30:48 +04:30
parent 5c46683ab8
commit 46ec6db965
3 changed files with 4 additions and 6 deletions

View File

@ -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)
{

View File

@ -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)

View File

@ -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_)
{}