mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-02-04 00:49:08 +00:00
fix(hash): add missing initializers to HASHKEY classes
This commit is contained in:
parent
c0dd80376d
commit
8ba9a76bde
1 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@
|
|||
class HASHKEY_PTR {
|
||||
public:
|
||||
// Member variables
|
||||
void* m_key;
|
||||
void* m_key = nullptr;
|
||||
|
||||
// Member functions
|
||||
bool operator==(const HASHKEY_PTR& key);
|
||||
|
|
@ -13,7 +13,7 @@ class HASHKEY_PTR {
|
|||
class HASHKEY_STR {
|
||||
public:
|
||||
// Member variables
|
||||
char* m_str;
|
||||
char* m_str = nullptr;
|
||||
|
||||
// Member functions
|
||||
~HASHKEY_STR();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue