feat(hash): preserve HASHKEY_PTR's default ctor

This commit is contained in:
fallenoak 2025-09-02 20:27:26 -05:00
parent cb37f528c3
commit adc8cb6200
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

@ -7,6 +7,7 @@ class HASHKEY_PTR {
void* m_key = nullptr;
// Member functions
HASHKEY_PTR() = default;
HASHKEY_PTR(void* key);
bool operator==(const HASHKEY_PTR& key);
};