diff options
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/block_gateway.h')
-rw-r--r-- | gnuradio-runtime/include/gnuradio/block_gateway.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/include/gnuradio/block_gateway.h b/gnuradio-runtime/include/gnuradio/block_gateway.h index f995b12ab5..0973c7bac3 100644 --- a/gnuradio-runtime/include/gnuradio/block_gateway.h +++ b/gnuradio-runtime/include/gnuradio/block_gateway.h @@ -112,8 +112,8 @@ public: std::string& handler_name) = 0; protected: - virtual bool has_msg_handler(pmt::pmt_t which_port) = 0; - virtual void dispatch_msg(pmt::pmt_t which_port, pmt::pmt_t msg) = 0; + bool has_msg_handler(pmt::pmt_t which_port) override = 0; + void dispatch_msg(pmt::pmt_t which_port, pmt::pmt_t msg) override = 0; }; } /* namespace gr */ |