mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-13 08:42:59 +00:00
[VARC/coord-setter] Reduce stack allocation on 32bit systems
This commit is contained in:
parent
51d3489ca1
commit
bb4d37b052
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue