Fix some comments regarding method overriding

This commit is contained in:
Martin Hurton
2014-01-08 18:25:31 +01:00
parent 60d6b89c5e
commit a80fb34765
12 changed files with 14 additions and 14 deletions

View File

@@ -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;
}