summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-14 16:08:12 -0400
committerDavid Robillard <d@drobilla.net>2022-08-17 23:34:56 -0400
commit47bd7661e6f88e60a998105e714696eee56ddbdd (patch)
treeeb4135ea83c72321067a8fd9471749252454e21c /include
parenta136bb1446d61c771cc8d28ae49a2bc0f61b90f5 (diff)
downloadingen-47bd7661e6f88e60a998105e714696eee56ddbdd.tar.gz
ingen-47bd7661e6f88e60a998105e714696eee56ddbdd.tar.bz2
ingen-47bd7661e6f88e60a998105e714696eee56ddbdd.zip
Fully declare special member functions
Diffstat (limited to 'include')
-rw-r--r--include/ingen/Properties.hpp7
1 files changed, 6 insertions, 1 deletions
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<value_type> l)
: std::multimap<URI, Property>(l)