mirror of
https://github.com/zeromq/libzmq.git
synced 2025-09-25 15:29:35 +02:00
Problem: implicit cast from size_t to int implies data loss.
This commit is contained in:
parent
ded6c84b38
commit
af0320f786
@ -75,7 +75,7 @@ namespace zmq
|
||||
|
||||
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.
|
||||
bool check_tag ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user