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/Semaphore.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/Semaphore.hpp')
-rw-r--r-- | include/raul/Semaphore.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
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(); } |