[set] Reduce number of preallocated pages from 8 to 1

Now that pagesize is 8192, this feels better.
pull/656/head
Behdad Esfahbod 7 years ago
parent ae2e2b068e
commit 9d6511a734
  1. 2
      src/hb-set-private.hh

@ -182,7 +182,7 @@ struct hb_set_t
ASSERT_POD ();
bool in_error;
hb_prealloced_array_t<page_map_t, 8> page_map;
hb_prealloced_array_t<page_t, 8> pages;
hb_prealloced_array_t<page_t, 1> pages;
inline void init (void)
{

Loading…
Cancel
Save