summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/include/gnuradio/msg_queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/msg_queue.h')
-rw-r--r--gnuradio-runtime/include/gnuradio/msg_queue.h4
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.