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

Now that pagesize is 8192, this feels better.
This commit is contained in:
Behdad Esfahbod 2017-12-14 19:04:55 -08:00
parent ae2e2b068e
commit 9d6511a734
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{