Reduce prealloced number of user-data items from 2 to 1
Even 1 is too many but putting 0 breaks compile. Saves 3k in .so
This commit is contained in:
parent
3205de7906
commit
51f4d4d5cd
|
@ -545,7 +545,7 @@ struct hb_auto_array_t : hb_prealloced_array_t <Type>
|
||||||
template <typename item_t, typename lock_t>
|
template <typename item_t, typename lock_t>
|
||||||
struct hb_lockable_set_t
|
struct hb_lockable_set_t
|
||||||
{
|
{
|
||||||
hb_prealloced_array_t <item_t, 2> items;
|
hb_prealloced_array_t <item_t, 1> items;
|
||||||
|
|
||||||
inline void init (void) { items.init (); }
|
inline void init (void) { items.init (); }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue