mirror of
https://github.com/zeromq/libzmq.git
synced 2025-11-04 12:17:39 +01:00
Don't pass flags to xsend method
This commit is contained in:
@@ -49,9 +49,9 @@ void zmq::dealer_t::xattach_pipe (pipe_t *pipe_, bool icanhasall_)
|
||||
lb.attach (pipe_);
|
||||
}
|
||||
|
||||
int zmq::dealer_t::xsend (msg_t *msg_, int flags_)
|
||||
int zmq::dealer_t::xsend (msg_t *msg_)
|
||||
{
|
||||
return lb.send (msg_, flags_);
|
||||
return lb.send (msg_);
|
||||
}
|
||||
|
||||
int zmq::dealer_t::xrecv (msg_t *msg_, int flags_)
|
||||
|
||||
Reference in New Issue
Block a user