[cache] Add constructor
This commit is contained in:
parent
ae96295d67
commit
115d572571
|
@ -48,6 +48,8 @@ struct hb_cache_t
|
|||
static_assert ((key_bits >= cache_bits), "");
|
||||
static_assert ((key_bits + value_bits <= cache_bits + 8 * sizeof (item_t)), "");
|
||||
|
||||
hb_cache_t () { init (); }
|
||||
|
||||
void init () { clear (); }
|
||||
void fini () {}
|
||||
|
||||
|
|
Loading…
Reference in New Issue