mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-06 00:31:13 +01:00
Merge pull request #4258 from timblechmann/feature/add-missing-override-statements
add missing override statements
This commit is contained in:
commit
ade334faa4
16
RELICENSE/timblechmann.md
Normal file
16
RELICENSE/timblechmann.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Tim Blechmann that grants permission to
|
||||||
|
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||||
|
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||||
|
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||||
|
Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "timblechmann", with
|
||||||
|
commit author "Tim Blechmann <tim@klingt.org>", are
|
||||||
|
copyright of Tim Blechmann. This document hereby grants the libzmq
|
||||||
|
project team to relicense libzmq, including all past, present and
|
||||||
|
future contributions of the author listed above.
|
||||||
|
|
||||||
|
Tim Blechmann
|
||||||
|
2021/09/21
|
@ -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…
Reference in New Issue
Block a user