From 47bd7661e6f88e60a998105e714696eee56ddbdd Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 14 Jul 2022 16:08:12 -0400 Subject: Fully declare special member functions --- include/ingen/Properties.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'include/ingen/Properties.hpp') diff --git a/include/ingen/Properties.hpp b/include/ingen/Properties.hpp index 1a80d0af..300d1a78 100644 --- a/include/ingen/Properties.hpp +++ b/include/ingen/Properties.hpp @@ -58,7 +58,12 @@ public: using Graph = Property::Graph; Properties() = default; - Properties(const Properties& copy) = default; + + Properties(const Properties&) = default; + Properties& operator=(const Properties&) = default; + + Properties(Properties&&) = default; + Properties& operator=(Properties&&) = default; Properties(std::initializer_list l) : std::multimap(l) -- cgit v1.2.1