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
commit fd2dcba02c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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) {}
};