feat(hash): add additional HASHKEY_PTR ctor

This commit is contained in:
fallenoak 2025-09-02 20:08:57 -05:00
parent 39dc8e507f
commit cb37f528c3
2 changed files with 5 additions and 0 deletions

View file

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