Problem: compiler warning in unittest_poller

Solution: cast the unused variable
This commit is contained in:
Luca Boccassi 2018-11-09 20:23:26 +00:00
parent 1402f7727e
commit 4a0b6c6c6f

View File

@ -59,6 +59,7 @@ struct test_events_t : zmq::i_poll_events
fd (fd_),
poller (poller_)
{
(void)fd;
}
virtual void in_event ()