[os2] Rewrite a loop

This commit is contained in:
Behdad Esfahbod 2023-01-12 18:37:45 -07:00
parent 082e5c5def
commit 9fb9be8d43
1 changed files with 4 additions and 3 deletions

View File

@ -280,12 +280,13 @@ struct OS2
void _update_unicode_ranges (const hb_set_t *codepoints,
HBUINT32 ulUnicodeRange[4]) const
{
HBUINT32 newBits[4];
HBUINT32 newBits[4];
for (unsigned int i = 0; i < 4; i++)
newBits[i] = 0;
hb_codepoint_t cp = HB_SET_VALUE_INVALID;
while (codepoints->next (&cp)) {
for (hb_codepoint_t cp = HB_SET_VALUE_INVALID;
codepoints->next (&cp);)
{
unsigned int bit = _hb_ot_os2_get_unicode_range_bit (cp);
if (bit < 128)
{