summaryrefslogtreecommitdiffstats
path: root/include/raul/Socket.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-20 11:05:07 -0400
committerDavid Robillard <d@drobilla.net>2022-07-20 16:24:23 -0400
commite883d87e43b06b54a810413d0a728ace1e9c26a0 (patch)
tree1e11f8a40ff91f4c78b870c08337979fbc052691 /include/raul/Socket.hpp
parentd7653e3feed6da300d4cff31860d6c26b24ec329 (diff)
downloadraul-e883d87e43b06b54a810413d0a728ace1e9c26a0.tar.gz
raul-e883d87e43b06b54a810413d0a728ace1e9c26a0.tar.bz2
raul-e883d87e43b06b54a810413d0a728ace1e9c26a0.zip
Clean up special member functions and format with clang-format 14
Diffstat (limited to 'include/raul/Socket.hpp')
-rw-r--r--include/raul/Socket.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/raul/Socket.hpp b/include/raul/Socket.hpp
index db51645..28a3c3a 100644
--- a/include/raul/Socket.hpp
+++ b/include/raul/Socket.hpp
@@ -35,11 +35,10 @@ public:
/// Wrap an existing open socket
Socket(Type t, std::string uri, sockaddr* addr, socklen_t addr_len, int fd);
- Socket(const Socket&) = delete;
+ Socket(const Socket&) = delete;
Socket& operator=(const Socket&) = delete;
-
- Socket(Socket&&) = delete;
- Socket& operator=(Socket&&) = delete;
+ Socket(Socket&&) = delete;
+ Socket& operator=(Socket&&) = delete;
~Socket();