summaryrefslogtreecommitdiffstats
path: root/include/ingen/Properties.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/ingen/Properties.hpp')
-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)