event/WinSelect: add missing const to deleted copy ctor/operator

This commit is contained in:
Max Kellermann 2020-10-30 15:45:20 +01:00
parent 938319cd44
commit b1e446a931

View File

@ -103,8 +103,8 @@ public:
WinSelectBackend() noexcept;
~WinSelectBackend() noexcept;
WinSelectBackend(WinSelectBackend &) = delete;
WinSelectBackend &operator=(WinSelectBackend &) = delete;
WinSelectBackend(const WinSelectBackend &) = delete;
WinSelectBackend &operator=(const WinSelectBackend &) = delete;
PollResultGeneric ReadEvents(int timeout_ms) noexcept;
bool Add(SOCKET fd, unsigned events, void *obj) noexcept;