[VARC/coord-setter] Reduce stack allocation on 32bit systems

This commit is contained in:
Behdad Esfahbod 2025-02-26 12:17:27 -07:00
parent 51d3489ca1
commit bb4d37b052

View file

@ -52,7 +52,7 @@ struct coord_setter_t
private:
hb_vector_t<int> dynamic_coords;
unsigned length;
int static_coords[64];
int static_coords[sizeof (void *) * 8];
};