BAN: HashMap now copies size when copying :D

This commit is contained in:
Bananymous
2023-02-22 01:16:07 +02:00
parent 038379274e
commit afd4b7a184

View File

@@ -86,6 +86,7 @@ namespace BAN
{ {
clear(); clear();
m_buckets = other.m_buckets; m_buckets = other.m_buckets;
m_size = other.m_size;
return *this; return *this;
} }