event/WinSelect: add missing const
to deleted copy ctor/operator
This commit is contained in:
parent
938319cd44
commit
b1e446a931
@ -103,8 +103,8 @@ public:
|
|||||||
WinSelectBackend() noexcept;
|
WinSelectBackend() noexcept;
|
||||||
~WinSelectBackend() noexcept;
|
~WinSelectBackend() noexcept;
|
||||||
|
|
||||||
WinSelectBackend(WinSelectBackend &) = delete;
|
WinSelectBackend(const WinSelectBackend &) = delete;
|
||||||
WinSelectBackend &operator=(WinSelectBackend &) = delete;
|
WinSelectBackend &operator=(const WinSelectBackend &) = delete;
|
||||||
|
|
||||||
PollResultGeneric ReadEvents(int timeout_ms) noexcept;
|
PollResultGeneric ReadEvents(int timeout_ms) noexcept;
|
||||||
bool Add(SOCKET fd, unsigned events, void *obj) noexcept;
|
bool Add(SOCKET fd, unsigned events, void *obj) noexcept;
|
||||||
|
Loading…
Reference in New Issue
Block a user