mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
[glyf] Minor another range for loop
This commit is contained in:
parent
0ae1676626
commit
794fac327c
1 changed files with 2 additions and 2 deletions
|
@ -225,8 +225,8 @@ struct glyf_accelerator_t
|
|||
|
||||
if (consumer.is_consuming_contour_points ())
|
||||
{
|
||||
for (unsigned point_index = 0; point_index < count; point_index++)
|
||||
consumer.consume_point (all_points.arrayZ[point_index]);
|
||||
for (auto &point : all_points.as_array ().sub_array (0, count))
|
||||
consumer.consume_point (point);
|
||||
consumer.points_end ();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue