mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-28 19:52:00 +01:00
Fix some comments regarding method overriding
This commit is contained in:
@@ -68,13 +68,13 @@ int zmq::sub_t::xsetsockopt (int option_, const void *optval_,
|
||||
|
||||
int zmq::sub_t::xsend (msg_t *)
|
||||
{
|
||||
// Overload the XSUB's send.
|
||||
// Override the XSUB's send.
|
||||
errno = ENOTSUP;
|
||||
return -1;
|
||||
}
|
||||
|
||||
bool zmq::sub_t::xhas_out ()
|
||||
{
|
||||
// Overload the XSUB's send.
|
||||
// Override the XSUB's send.
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user