From b51be554b996ae77d6230a2909bf1276bdf4adbb Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Wed, 12 Aug 2020 12:50:10 +0200 Subject: [PATCH] Fixes from review --- STL_Extension/include/CGAL/Small_unordered_set.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/STL_Extension/include/CGAL/Small_unordered_set.h b/STL_Extension/include/CGAL/Small_unordered_set.h index ba6528b4928..e0329180bc4 100644 --- a/STL_Extension/include/CGAL/Small_unordered_set.h +++ b/STL_Extension/include/CGAL/Small_unordered_set.h @@ -57,8 +57,6 @@ public: Small_unordered_set() { } - ~Small_unordered_set() { } - Small_unordered_set (const Small_unordered_set& other) : m_size (other.m_size) { @@ -88,6 +86,7 @@ public: Small_unordered_set& operator= (Small_unordered_set&& other) { + m_size = other.m_size; if (other.m_set) m_set = std::move(other.m_set); else