Skip to content

Commit 11daf56

Browse files
committed
[GDEF] Rename a var
1 parent 7b56d3a commit 11daf56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/OT/Layout/GDEF/GDEF.hh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ struct GDEF
977977
}
978978

979979
#ifndef HB_NO_GDEF_CACHE
980-
table->get_mark_glyph_sets ().collect_coverage (mark_glyph_set_digests);
980+
table->get_mark_glyph_sets ().collect_coverage (mark_glyph_sets);
981981
#endif
982982
}
983983
~accelerator_t () { table.destroy (); }
@@ -1006,7 +1006,7 @@ struct GDEF
10061006
{
10071007
return
10081008
#ifndef HB_NO_GDEF_CACHE
1009-
mark_glyph_set_digests[set_index].may_have (glyph_id)
1009+
mark_glyph_sets[set_index].may_have (glyph_id)
10101010
#else
10111011
table->mark_set_covers (set_index, glyph_id)
10121012
#endif
@@ -1015,7 +1015,7 @@ struct GDEF
10151015

10161016
hb_blob_ptr_t<GDEF> table;
10171017
#ifndef HB_NO_GDEF_CACHE
1018-
hb_vector_t<hb_bit_set_t> mark_glyph_set_digests;
1018+
hb_vector_t<hb_bit_set_t> mark_glyph_sets;
10191019
mutable hb_cache_t<21, 3> glyph_props_cache;
10201020
static_assert (sizeof (glyph_props_cache) == 512, "");
10211021
#endif

0 commit comments

Comments
 (0)