diff options
Diffstat (limited to 'gr-blocks/lib/add_const_bb_impl.h')
-rw-r--r-- | gr-blocks/lib/add_const_bb_impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-blocks/lib/add_const_bb_impl.h b/gr-blocks/lib/add_const_bb_impl.h index f57031afc4..c8df1a1235 100644 --- a/gr-blocks/lib/add_const_bb_impl.h +++ b/gr-blocks/lib/add_const_bb_impl.h @@ -23,12 +23,12 @@ private: public: add_const_bb_impl(unsigned char k); - ~add_const_bb_impl(); + ~add_const_bb_impl() override; - void setup_rpc(); + void setup_rpc() override; - unsigned char k() const { return d_k; } - void set_k(unsigned char k) { d_k = k; } + unsigned char k() const override { return d_k; } + void set_k(unsigned char k) override { d_k = k; } int work(int noutput_items, gr_vector_const_void_star& input_items, |