Skip to content

Commit

Permalink
Fix min definition missing in zmq third party library
Browse files Browse the repository at this point in the history
Fixes #2270
  • Loading branch information
emanuele-f committed Dec 27, 2018
1 parent f6f8452 commit a1c56ac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions third-party/zeromq-4.1.3/src/tcp_connecter.cpp
Expand Up @@ -58,6 +58,8 @@
#endif
#endif

#define min(a, b) ((b < a) ? b : a)

zmq::tcp_connecter_t::tcp_connecter_t (class io_thread_t *io_thread_,
class session_base_t *session_, const options_t &options_,
address_t *addr_, bool delayed_start_) :
Expand Down

0 comments on commit a1c56ac

Please sign in to comment.