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
1 changed files with 1 additions and 0 deletions

View File

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