| 304 | |
| 305 | namespace detail { |
| 306 | inline int poll(zmq_pollitem_t *items_, size_t nitems_, long timeout_) |
| 307 | { |
| 308 | int rc = zmq_poll(items_, static_cast<int>(nitems_), timeout_); |
| 309 | if (rc < 0) |
| 310 | throw error_t(); |
| 311 | return rc; |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | #ifdef ZMQ_CPP11 |
no test coverage detected