[Coverage] Remove unnecessary check

This commit is contained in:
Behdad Esfahbod 2023-05-05 15:37:07 -06:00
parent ee9b631d19
commit 71910fdf91

View file

@ -130,7 +130,7 @@ struct Coverage
u.format = !unsorted && count <= num_ranges * 3 ? 1 : 2;
#ifndef HB_NO_BEYOND_64K
if (count && max > 0xFFFFu)
if (max > 0xFFFFu)
u.format += 2;
#endif