mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-17 08:34:00 +00:00
add missing override statements
This commit is contained in:
parent
5d04e20a01
commit
51e97c5480
@ -113,7 +113,7 @@ class session_base_t : public own_t, public io_object_t, public i_pipe_events
|
|||||||
void process_plug () ZMQ_FINAL;
|
void process_plug () ZMQ_FINAL;
|
||||||
void process_attach (zmq::i_engine *engine_) ZMQ_FINAL;
|
void process_attach (zmq::i_engine *engine_) ZMQ_FINAL;
|
||||||
void process_term (int linger_) ZMQ_FINAL;
|
void process_term (int linger_) ZMQ_FINAL;
|
||||||
void process_conn_failed ();
|
void process_conn_failed () ZMQ_OVERRIDE;
|
||||||
|
|
||||||
// i_poll_events handlers.
|
// i_poll_events handlers.
|
||||||
void timer_event (int id_) ZMQ_FINAL;
|
void timer_event (int id_) ZMQ_FINAL;
|
||||||
|
@ -73,7 +73,7 @@ class stream_engine_base_t : public io_object_t, public i_engine
|
|||||||
|
|
||||||
// i_poll_events interface implementation.
|
// i_poll_events interface implementation.
|
||||||
void in_event () ZMQ_FINAL;
|
void in_event () ZMQ_FINAL;
|
||||||
void out_event ();
|
void out_event () ZMQ_OVERRIDE;
|
||||||
void timer_event (int id_) ZMQ_FINAL;
|
void timer_event (int id_) ZMQ_FINAL;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user