summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/regenerate_bb_impl.h
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2020-10-30 18:22:33 +0100
committermormj <34754695+mormj@users.noreply.github.com>2020-11-03 14:07:23 -0500
commit0ddc7dbc95ca6fb4c4a62a3c027104d6dd71fc3b (patch)
treeb454053fdc123711f3011b8a703de38e1d783ba3 /gr-blocks/lib/regenerate_bb_impl.h
parent1cfd6287635e339b313e1826fdfda23f474c91c8 (diff)
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gr-blocks/lib/regenerate_bb_impl.h')
-rw-r--r--gr-blocks/lib/regenerate_bb_impl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-blocks/lib/regenerate_bb_impl.h b/gr-blocks/lib/regenerate_bb_impl.h
index 8a50f91722..18071944a9 100644
--- a/gr-blocks/lib/regenerate_bb_impl.h
+++ b/gr-blocks/lib/regenerate_bb_impl.h
@@ -26,13 +26,13 @@ private:
public:
regenerate_bb_impl(int period, unsigned int max_regen = 500);
- ~regenerate_bb_impl();
+ ~regenerate_bb_impl() override;
- void set_max_regen(unsigned int regen);
- void set_period(int period);
+ void set_max_regen(unsigned int regen) override;
+ void set_period(int period) override;
- unsigned int max_regen() const { return d_max_regen; };
- int period() const { return d_period; };
+ unsigned int max_regen() const override { return d_max_regen; };
+ int period() const override { return d_period; };
int work(int noutput_items,
gr_vector_const_void_star& input_items,