mirror of https://github.com/CGAL/cgal
Fixes from review
This commit is contained in:
parent
d6d189b4a1
commit
b51be554b9
|
|
@ -57,8 +57,6 @@ public:
|
||||||
|
|
||||||
Small_unordered_set() { }
|
Small_unordered_set() { }
|
||||||
|
|
||||||
~Small_unordered_set() { }
|
|
||||||
|
|
||||||
Small_unordered_set (const Small_unordered_set& other)
|
Small_unordered_set (const Small_unordered_set& other)
|
||||||
: m_size (other.m_size)
|
: m_size (other.m_size)
|
||||||
{
|
{
|
||||||
|
|
@ -88,6 +86,7 @@ public:
|
||||||
|
|
||||||
Small_unordered_set& operator= (Small_unordered_set&& other)
|
Small_unordered_set& operator= (Small_unordered_set&& other)
|
||||||
{
|
{
|
||||||
|
m_size = other.m_size;
|
||||||
if (other.m_set)
|
if (other.m_set)
|
||||||
m_set = std::move(other.m_set);
|
m_set = std::move(other.m_set);
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue