Merge pull request #53772 from RandomShaper/fix_hash_map

This commit is contained in:
Rémi Verschelde
2021-10-13 21:03:50 +02:00
committed by GitHub
+1
View File
@@ -96,6 +96,7 @@ public:
Element(const TKey &p_key) :
pair(p_key) {}
Element(const Element &p_other) :
hash(p_other.hash),
pair(p_other.pair.key, p_other.pair.data) {}
};