[subset-cff] Remove an unlikely

This commit is contained in:
Behdad Esfahbod 2023-01-02 17:41:31 -07:00
parent f8c578fd93
commit 4a435dc024
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ struct parsed_cs_str_t : parsed_values_t<parsed_cs_op_t>
void compact ()
{
unsigned count = values.length;
if (unlikely (!count)) return;
if (!count) return;
auto &opstr = values.arrayZ;
unsigned j = 0;
for (unsigned i = 1; i < count; i++)