Commit 1003cc9b authored by Denis Krjuchkov's avatar Denis Krjuchkov

PollGroupWinSelect: uninline constructor and destructor

parent 2b717997
......@@ -31,6 +31,9 @@ static inline bool HasEvent(unsigned events, int event_id)
return (events & (1 << event_id)) != 0;
}
PollGroupWinSelect::PollGroupWinSelect() { }
PollGroupWinSelect::~PollGroupWinSelect() { }
bool PollGroupWinSelect::CanModify(PollGroupWinSelect::Item &item,
unsigned events, int event_id)
{
......
......@@ -96,8 +96,8 @@ public:
static constexpr unsigned ERROR = 0;
static constexpr unsigned HANGUP = 0;
PollGroupWinSelect() { }
~PollGroupWinSelect() { }
PollGroupWinSelect();
~PollGroupWinSelect();
void ReadEvents(PollResultGeneric &result, int timeout_ms);
bool Add(int fd, unsigned events, void *obj);
......
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