Commit 07352e82 authored by Denis Krjuchkov's avatar Denis Krjuchkov

PollGroupWinSelect: delete copy constructor and assignment operator

parent 1003cc9b
...@@ -90,6 +90,8 @@ class PollGroupWinSelect ...@@ -90,6 +90,8 @@ class PollGroupWinSelect
bool CanModify(Item &item, unsigned events, int event_id); bool CanModify(Item &item, unsigned events, int event_id);
void Modify(Item &item, int fd, unsigned events, int event_id); void Modify(Item &item, int fd, unsigned events, int event_id);
PollGroupWinSelect(PollGroupWinSelect &) = delete;
PollGroupWinSelect &operator=(PollGroupWinSelect &) = delete;
public: public:
static constexpr unsigned READ = 1; static constexpr unsigned READ = 1;
static constexpr unsigned WRITE = 2; static constexpr unsigned WRITE = 2;
......
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