diff options
Diffstat (limited to 'gr-blocks/lib/and_const_impl.h')
-rw-r--r-- | gr-blocks/lib/and_const_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/and_const_impl.h b/gr-blocks/lib/and_const_impl.h index e6c283dbad..96d917358f 100644 --- a/gr-blocks/lib/and_const_impl.h +++ b/gr-blocks/lib/and_const_impl.h @@ -25,8 +25,8 @@ class BLOCKS_API and_const_impl : public and_const<T> public: and_const_impl(T k); - T k() const { return d_k; } - void set_k(T k) { d_k = k; } + T k() const override { return d_k; } + void set_k(T k) override { d_k = k; } int work(int noutput_items, gr_vector_const_void_star& input_items, |