unintialized variable cleanups

This commit is contained in:
AzaezelX 2025-05-26 15:16:48 -05:00
parent 6596865d92
commit 76b33ab57b
2 changed files with 3 additions and 3 deletions

View file

@ -179,8 +179,8 @@ class HashTable
public:
struct Pair
{
Key key;
Value value;
Key key{};
Value value{};
Pair() {}
Pair(Key k,Value v)
: key(k),