Commit e10464e4 authored by Kachanovskiy's avatar Kachanovskiy

Fix for build break when SIO_LOOPBACK_FAST_PATH is not defined (i.e. in VS2010)

parent bc467f06
......@@ -335,7 +335,7 @@ void zmq::tcp_assert_tuning_error (zmq::fd_t s_, int rc_)
void zmq::tcp_tune_loopback_fast_path (const fd_t socket_)
{
#if defined ZMQ_HAVE_WINDOWS
#if defined ZMQ_HAVE_WINDOWS && defined SIO_LOOPBACK_FAST_PATH
int sio_loopback_fastpath = 1;
DWORD numberOfBytesReturned = 0;
......
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