[set] Reduce number of preallocated pages from 8 to 1
Now that pagesize is 8192, this feels better.
This commit is contained in:
parent
ae2e2b068e
commit
9d6511a734
|
@ -182,7 +182,7 @@ struct hb_set_t
|
||||||
ASSERT_POD ();
|
ASSERT_POD ();
|
||||||
bool in_error;
|
bool in_error;
|
||||||
hb_prealloced_array_t<page_map_t, 8> page_map;
|
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)
|
inline void init (void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue