diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ingen/Properties.hpp | 7 |
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) |