Skip to content

Commit

Permalink
Merge pull request #65 from K0n63n/master
Browse files Browse the repository at this point in the history
Correction to pull request #56
  • Loading branch information
hintjens committed Nov 30, 2015
2 parents df5ce17 + 308239d commit ac1c3c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zmq.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,17 @@ namespace zmq
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)
throw error_t ();
return rc;
}

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
Expand All @@ -153,7 +153,7 @@ namespace zmq

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

Expand Down

0 comments on commit ac1c3c3

Please sign in to comment.