summaryrefslogtreecommitdiffstats
path: root/include/raul/Socket.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-19 12:20:43 +0100
committerDavid Robillard <d@drobilla.net>2020-12-19 12:20:43 +0100
commit40f3c3f66f532941ca9576852827d636000f2477 (patch)
tree18eb788aa336d14d6b90b91aae56e62af83069e2 /include/raul/Socket.hpp
parentcce18a14f18b1aa63949de77f4f370ba82708cf3 (diff)
downloadraul-40f3c3f66f532941ca9576852827d636000f2477.tar.gz
raul-40f3c3f66f532941ca9576852827d636000f2477.tar.bz2
raul-40f3c3f66f532941ca9576852827d636000f2477.zip
Clean up special member functions
Diffstat (limited to 'include/raul/Socket.hpp')
-rw-r--r--include/raul/Socket.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/raul/Socket.hpp b/include/raul/Socket.hpp
index 74a1595..f3a4b07 100644
--- a/include/raul/Socket.hpp
+++ b/include/raul/Socket.hpp
@@ -53,6 +53,9 @@ public:
Socket(const Socket&) = delete;
Socket& operator=(const Socket&) = delete;
+ Socket(Socket&&) = delete;
+ Socket& operator=(Socket&&) = delete;
+
~Socket();
/** Bind a server socket to an address.