[map] Initialize key and value explicitly

If they are of int time they won't be initialized otherwise.
This commit is contained in:
Behdad Esfahbod 2022-11-17 16:34:58 -07:00
parent 1d41b9cb3c
commit ae080bf202
1 changed files with 4 additions and 6 deletions

View File

@ -71,12 +71,10 @@ struct hb_hashmap_t
uint32_t is_tombstone_ : 1;
V value;
item_t ()
{
hash = 0;
is_used_ = false;
is_tombstone_ = false;
}
item_t () : key (),
hash (0),
is_used_ (false), is_tombstone_ (false),
value () {}
bool is_used () const { return is_used_; }
void set_used (bool is_used) { is_used_ = is_used; }