From 40f3c3f66f532941ca9576852827d636000f2477 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 19 Dec 2020 12:20:43 +0100 Subject: Clean up special member functions --- include/raul/Deletable.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'include/raul/Deletable.hpp') 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 @@ -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; }; -- cgit v1.2.1