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/Semaphore.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/raul/Semaphore.hpp') diff --git a/include/raul/Semaphore.hpp b/include/raul/Semaphore.hpp index ee2325f..a6203dc 100644 --- a/include/raul/Semaphore.hpp +++ b/include/raul/Semaphore.hpp @@ -64,6 +64,9 @@ public: inline Semaphore(const Semaphore&) = delete; inline Semaphore& operator=(const Semaphore&) = delete; + inline Semaphore(Semaphore&&) = delete; + inline Semaphore& operator=(Semaphore&&) = delete; + inline ~Semaphore() { destroy(); } -- cgit v1.2.1