diff options
author | David Robillard <d@drobilla.net> | 2020-12-19 12:20:43 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-19 12:20:43 +0100 |
commit | 40f3c3f66f532941ca9576852827d636000f2477 (patch) | |
tree | 18eb788aa336d14d6b90b91aae56e62af83069e2 /include/raul/Deletable.hpp | |
parent | cce18a14f18b1aa63949de77f4f370ba82708cf3 (diff) | |
download | raul-40f3c3f66f532941ca9576852827d636000f2477.tar.gz raul-40f3c3f66f532941ca9576852827d636000f2477.tar.bz2 raul-40f3c3f66f532941ca9576852827d636000f2477.zip |
Clean up special member functions
Diffstat (limited to 'include/raul/Deletable.hpp')
-rw-r--r-- | include/raul/Deletable.hpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/raul/Deletable.hpp b/include/raul/Deletable.hpp index 9b80d54..191daaf 100644 --- a/include/raul/Deletable.hpp +++ b/include/raul/Deletable.hpp @@ -1,4 +1,3 @@ - /* This file is part of Raul. Copyright 2007-2013 David Robillard <http://drobilla.net> @@ -29,6 +28,12 @@ class Deletable public: Deletable() = default; + Deletable(const Deletable&) = default; + Deletable& operator=(const Deletable&) = default; + + Deletable(Deletable&&) = default; + Deletable& operator=(Deletable&&) = default; + virtual ~Deletable() = default; }; |