From 422b466caa4bcd4b30f08d9a24535dad8ed20f0d Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 23 Mar 2025 13:56:24 +0000 Subject: Other objects support in operator= --- lib/collection.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/collection.h b/lib/collection.h index e68a8db..329b681 100644 --- a/lib/collection.h +++ b/lib/collection.h @@ -18,6 +18,10 @@ public: operator=(Objects && other) { objects = std::move(other); + ((std::get>(otherObjects).clear()), ...); + for (const auto & other : objects) { + addOthersPtr(other.get()); + } return *this; } @@ -138,10 +142,10 @@ public: return objects.empty(); } - auto + decltype(auto) emplace(Ptr && ptr) { - auto object = objects.emplace_back(std::move(ptr)); + const auto & object = objects.emplace_back(std::move(ptr)); addOthersPtr(object.get()); return object; } -- cgit v1.2.3