summaryrefslogtreecommitdiffstats
path: root/include/ingen/Library.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/ingen/Library.hpp')
-rw-r--r--include/ingen/Library.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ingen/Library.hpp b/include/ingen/Library.hpp
index d7d7054a..4cee985f 100644
--- a/include/ingen/Library.hpp
+++ b/include/ingen/Library.hpp
@@ -29,8 +29,10 @@ public:
Library(const FilePath& path);
~Library();
- Library(const Library&) = delete;
+ Library(const Library&) = delete;
Library& operator=(const Library&) = delete;
+ Library(Library&&) = delete;
+ Library& operator=(Library&&) = delete;
using VoidFuncPtr = void (*)();