diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2020-10-30 18:22:33 +0100 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-11-03 14:07:23 -0500 |
commit | 0ddc7dbc95ca6fb4c4a62a3c027104d6dd71fc3b (patch) | |
tree | b454053fdc123711f3011b8a703de38e1d783ba3 /gnuradio-runtime/include/gnuradio/msg_queue.h | |
parent | 1cfd6287635e339b313e1826fdfda23f474c91c8 (diff) |
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/msg_queue.h')
-rw-r--r-- | gnuradio-runtime/include/gnuradio/msg_queue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/include/gnuradio/msg_queue.h b/gnuradio-runtime/include/gnuradio/msg_queue.h index af1286345e..0d8c4ebeeb 100644 --- a/gnuradio-runtime/include/gnuradio/msg_queue.h +++ b/gnuradio-runtime/include/gnuradio/msg_queue.h @@ -37,10 +37,10 @@ public: static sptr make(unsigned int limit = 0); msg_queue(unsigned int limit); - ~msg_queue(); + ~msg_queue() override; //! Generic msg_handler method: insert the message. - void handle(message::sptr msg) { insert_tail(msg); } + void handle(message::sptr msg) override { insert_tail(msg); } /*! * \brief Insert message at tail of queue. |