Merge pull request #53772 from RandomShaper/fix_hash_map
This commit is contained in:
commit
fd2dcba02c
|
@ -96,6 +96,7 @@ public:
|
||||||
Element(const TKey &p_key) :
|
Element(const TKey &p_key) :
|
||||||
pair(p_key) {}
|
pair(p_key) {}
|
||||||
Element(const Element &p_other) :
|
Element(const Element &p_other) :
|
||||||
|
hash(p_other.hash),
|
||||||
pair(p_other.pair.key, p_other.pair.data) {}
|
pair(p_other.pair.key, p_other.pair.data) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue