[Coverage] Minor type change

This commit is contained in:
Behdad Esfahbod 2022-07-21 12:17:08 -06:00
parent b38587aa0b
commit afa65f2903
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ struct CoverageFormat2_4
{ {
for (const auto& range : rangeRecord) for (const auto& range : rangeRecord)
{ {
unsigned last = range.last; hb_codepoint_t last = range.last;
for (hb_codepoint_t g = range.first - 1; for (hb_codepoint_t g = range.first - 1;
glyphs.next (&g) && g <= last;) glyphs.next (&g) && g <= last;)
intersect_glyphs << g; intersect_glyphs << g;