[pool] Change chunk-len from 16 to 32

This commit is contained in:
Behdad Esfahbod 2022-12-30 14:55:32 -07:00
parent d7941e04df
commit 04464c55b2
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
/* Memory pool for persistent allocation of small objects. */
template <typename T, unsigned ChunkLen = 16>
template <typename T, unsigned ChunkLen = 32>
struct hb_pool_t
{
hb_pool_t () : next (nullptr) {}