Skip to content

Commit 7035566

Browse files
author
Artiom N.
committed
socket wrapper move constructor marked as noexcept: #24
1 parent 8090459 commit 7035566

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/socket_wrapper/include/socket_wrapper/socket_class.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Socket final
1212
explicit Socket(SocketDescriptorType socket_descriptor);
1313

1414
Socket(const Socket &) = delete;
15-
Socket(Socket &&s);
15+
Socket(Socket &&s) noexcept;
1616
Socket &operator=(const Socket &s) = delete;
1717
Socket &operator=(Socket &&s);
1818

0 commit comments

Comments
 (0)