summaryrefslogtreecommitdiffstats
path: root/ingen/Properties.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 12:34:07 -0500
committerDavid Robillard <d@drobilla.net>2017-12-25 12:49:55 -0500
commite2d1344c7c4960da1f57e656c87c4599d81988aa (patch)
tree16f8d4fcadc5a9daad6e6cfbaaa4ad794da8e623 /ingen/Properties.hpp
parent9aaa4892720de74e165049e2be941629038a6951 (diff)
downloadingen-e2d1344c7c4960da1f57e656c87c4599d81988aa.tar.gz
ingen-e2d1344c7c4960da1f57e656c87c4599d81988aa.tar.bz2
ingen-e2d1344c7c4960da1f57e656c87c4599d81988aa.zip
Remove trivial destructors and use default where possible
Diffstat (limited to 'ingen/Properties.hpp')
-rw-r--r--ingen/Properties.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/ingen/Properties.hpp b/ingen/Properties.hpp
index ef914e68..39d6cf81 100644
--- a/ingen/Properties.hpp
+++ b/ingen/Properties.hpp
@@ -57,11 +57,8 @@ class Properties : public std::multimap<Raul::URI, Property> {
public:
using Graph = Property::Graph;
- Properties() {}
-
- Properties(const Properties& copy)
- : std::multimap<Raul::URI, Property>(copy)
- {}
+ Properties() = default;
+ Properties(const Properties& copy) = default;
Properties(std::initializer_list<value_type> l)
: std::multimap<Raul::URI, Property>(l)