diff options
Diffstat (limited to 'gr-blocks/lib/check_lfsr_32k_s_impl.h')
-rw-r--r-- | gr-blocks/lib/check_lfsr_32k_s_impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-blocks/lib/check_lfsr_32k_s_impl.h b/gr-blocks/lib/check_lfsr_32k_s_impl.h index c704a85199..102fbc7102 100644 --- a/gr-blocks/lib/check_lfsr_32k_s_impl.h +++ b/gr-blocks/lib/check_lfsr_32k_s_impl.h @@ -65,15 +65,15 @@ private: public: check_lfsr_32k_s_impl(); - ~check_lfsr_32k_s_impl(); + ~check_lfsr_32k_s_impl() override; int work(int noutput_items, gr_vector_const_void_star& input_items, gr_vector_void_star& output_items) override; - long ntotal() const { return d_ntotal; } - long nright() const { return d_nright; } - long runlength() const { return d_runlength; } + long ntotal() const override { return d_ntotal; } + long nright() const override { return d_nright; } + long runlength() const override { return d_runlength; } }; } /* namespace blocks */ |