Merge pull request #1977 from hitstergtd/x-unused-variables

Problem: sockfd_ parameter throws unused warning
This commit is contained in:
Luca Boccassi 2016-05-10 18:43:22 +01:00
commit c7ecbedb0e

View File

@ -168,6 +168,8 @@ void zmq::tune_tcp_maxrt (fd_t sockfd_, int timeout_)
if (timeout_ <= 0)
return;
LIBZMQ_UNUSED (sockfd_);
#if defined (ZMQ_HAVE_WINDOWS) && defined (TCP_MAXRT)
// msdn says it's supported in >= Vista, >= Windows Server 2003
timeout_ /= 1000; // in seconds