mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-29 04:17:57 +01:00
fix for Sun C++ 5.8
This commit is contained in:
@@ -33,4 +33,6 @@ int zmq::forwarder (socket_base_t *insocket_, socket_base_t *outsocket_)
|
|||||||
insocket_->recv (&msg, 0);
|
insocket_->recv (&msg, 0);
|
||||||
outsocket_->send (&msg, 0);
|
outsocket_->send (&msg, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -94,5 +94,7 @@ int zmq::queue (class socket_base_t *insocket_,
|
|||||||
has_response = false;
|
has_response = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -33,4 +33,6 @@ int zmq::streamer (socket_base_t *insocket_, socket_base_t *outsocket_)
|
|||||||
insocket_->recv (&msg, 0);
|
insocket_->recv (&msg, 0);
|
||||||
outsocket_->send (&msg, 0);
|
outsocket_->send (&msg, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user