mirror of
https://github.com/zeromq/cppzmq.git
synced 2025-01-19 00:46:05 +01:00
Merge pull request #65 from K0n63n/master
Correction to pull request #56
This commit is contained in:
commit
ac1c3c3bd8
8
zmq.hpp
8
zmq.hpp
@ -127,9 +127,9 @@ namespace zmq
|
|||||||
int errnum;
|
int errnum;
|
||||||
};
|
};
|
||||||
|
|
||||||
inline int poll (zmq_pollitem_t const* items_, int nitems_, long timeout_ = -1)
|
inline int poll (zmq_pollitem_t const* items_, size_t nitems_, long timeout_ = -1)
|
||||||
{
|
{
|
||||||
int rc = zmq_poll (const_cast<zmq_pollitem_t*>(items_), nitems_, timeout_);
|
int rc = zmq_poll (const_cast<zmq_pollitem_t*>(items_), static_cast<int>(nitems_), timeout_);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
throw error_t ();
|
throw error_t ();
|
||||||
return rc;
|
return rc;
|
||||||
@ -137,7 +137,7 @@ namespace zmq
|
|||||||
|
|
||||||
inline int poll(zmq_pollitem_t const* items, size_t nitems)
|
inline int poll(zmq_pollitem_t const* items, size_t nitems)
|
||||||
{
|
{
|
||||||
return poll(items, static_cast<int>(nitems), -1);
|
return poll(items, nitems, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ZMQ_CPP11
|
#ifdef ZMQ_CPP11
|
||||||
@ -153,7 +153,7 @@ namespace zmq
|
|||||||
|
|
||||||
inline int poll(std::vector<zmq_pollitem_t> const& items, long timeout_ = -1)
|
inline int poll(std::vector<zmq_pollitem_t> const& items, long timeout_ = -1)
|
||||||
{
|
{
|
||||||
return poll(items.data(), static_cast<int>(items.size()), timeout_);
|
return poll(items.data(), items.size(), timeout_);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user