[cache] Add constructor

This commit is contained in:
Behdad Esfahbod 2023-01-28 13:22:08 -07:00
parent ae96295d67
commit 115d572571
1 changed files with 2 additions and 0 deletions

View File

@ -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 () {}