Don't pass flags to xsend method

This commit is contained in:
Martin Hurton
2012-11-09 17:08:03 +01:00
parent 793895c477
commit 7865f96e97
24 changed files with 43 additions and 52 deletions

View File

@@ -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_)