[meta] minor, simplify iterator

pull/1871/head
Ebrahim Byagowi 5 years ago committed by Behdad Esfahbod
parent 62932c14bd
commit aaffe41094
  1. 8
      src/hb-ot-meta-table.hh

@ -82,11 +82,11 @@ struct meta
unsigned int *count,
hb_ot_meta_t *entries) const
{
if (count && *count)
if (count)
{
hb_array_t<const DataMap> array = table->dataMaps.sub_array (start_offset, count);
for (unsigned int i = 0; i < *count; i++)
entries[i] = (hb_ot_meta_t) array[i].get_tag ();
hb_array_t<const DataMap> arr = table->dataMaps.sub_array (start_offset, count);
for (unsigned int i = 0; i < arr.length; i++)
entries[i] = (hb_ot_meta_t) arr[i].get_tag ();
}
return table->dataMaps.len;
}

Loading…
Cancel
Save