Commit b1e446a9 authored by Max Kellermann's avatar Max Kellermann

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

parent 938319cd
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment