From 69a4e3e544f3b0cff296a01c51d325d23e265fb1 Mon Sep 17 00:00:00 2001 From: gatecat Date: Thu, 30 Dec 2021 21:32:04 +0000 Subject: SSOArray: Implement move and assignment operators Signed-off-by: gatecat --- common/sso_array.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/common/sso_array.h b/common/sso_array.h index 1fae6c57..80e7d1c1 100644 --- a/common/sso_array.h +++ b/common/sso_array.h @@ -70,6 +70,26 @@ template class SSOArray std::copy(other.begin(), other.end(), begin()); } + SSOArray(SSOArray &&other) : m_size(other.size()) + { + if (is_heap()) + data_heap = other.data_heap; + else + std::copy(other.begin(), other.end(), begin()); + other.m_size = 0; + } + SSOArray &operator=(const SSOArray &other) + { + if (&other == this) + return *this; + if (is_heap()) + delete[] data_heap; + m_size = other.m_size; + alloc(); + std::copy(other.begin(), other.end(), begin()); + return *this; + } + template SSOArray(const Tother &other) : m_size(other.size()) { alloc(); -- cgit v1.2.3