[subset] Move variable declaration out of loop.

This commit is contained in:
Garret Rieger 2018-06-07 15:54:19 -07:00
parent 197cb18b22
commit fc246ec985
1 changed files with 2 additions and 2 deletions

View File

@ -232,10 +232,10 @@ test_subset_glyf_strip_hints_invalid (void)
'A', 'B', 'C', 'D', 'E', 'X', 'Y', 'Z', '1', '2',
'3', '@', '_', '%', '&', ')', '*', '$', '!'
};
for (unsigned int i = 0; i < sizeof (text) / sizeof (hb_codepoint_t); i++)
unsigned int i;
for (i = 0; i < sizeof (text) / sizeof (hb_codepoint_t); i++)
{
hb_set_add (codepoints, text[i]);
// hb_set_add (codepoints_drop_hints, text[i]);
}
hb_subset_input_t *input = hb_subset_test_create_input (codepoints);