Commit 6622e162 authored by Luca Boccassi's avatar Luca Boccassi Committed by GitHub

Merge pull request #2451 from evoskuil/master

Problem: implicit cast from size_t to int implies data loss.
parents ded6c84b af0320f7
...@@ -75,7 +75,7 @@ namespace zmq ...@@ -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 ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment