mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-16 16:13:58 +00:00
Merge pull request #2451 from evoskuil/master
Problem: implicit cast from size_t to int implies data loss.
This commit is contained in:
commit
6622e16245
@ -75,7 +75,7 @@ namespace zmq
|
|||||||
|
|
||||||
int wait (event_t *event, int n_events, long timeout);
|
int wait (event_t *event, int n_events, long timeout);
|
||||||
|
|
||||||
inline int size (void) { return items.size (); };
|
inline int size (void) { return static_cast <int> (items.size ()); };
|
||||||
|
|
||||||
// Return false if object is not a socket.
|
// Return false if object is not a socket.
|
||||||
bool check_tag ();
|
bool check_tag ();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user