event/ServerSocket: make OnAccept() noexcept

This commit is contained in:
Max Kellermann
2018-10-30 20:13:07 +01:00
parent 413ab80295
commit 0307b49f43
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ public:
protected:
virtual void OnAccept(UniqueSocketDescriptor fd,
SocketAddress address, int uid) = 0;
SocketAddress address, int uid) noexcept = 0;
};
#endif