[vector] Change pre-alloced count from 8 to 2

I'm thinking about dropping it to zero, but that needs slight code changes.
This commit is contained in:
Behdad Esfahbod 2018-12-24 11:31:04 -05:00
parent d25a2f1496
commit 3b81442cd5
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@
#include "hb-null.hh"
template <typename Type, unsigned int PreallocedCount=8>
template <typename Type, unsigned int PreallocedCount=2>
struct hb_vector_t
{
typedef Type item_t;