diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2020-10-30 18:22:33 +0100 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-11-03 14:07:23 -0500 |
commit | 0ddc7dbc95ca6fb4c4a62a3c027104d6dd71fc3b (patch) | |
tree | b454053fdc123711f3011b8a703de38e1d783ba3 /gr-analog/lib/phase_modulator_fc_impl.h | |
parent | 1cfd6287635e339b313e1826fdfda23f474c91c8 (diff) |
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gr-analog/lib/phase_modulator_fc_impl.h')
-rw-r--r-- | gr-analog/lib/phase_modulator_fc_impl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-analog/lib/phase_modulator_fc_impl.h b/gr-analog/lib/phase_modulator_fc_impl.h index 2c4ef279fc..4e81331513 100644 --- a/gr-analog/lib/phase_modulator_fc_impl.h +++ b/gr-analog/lib/phase_modulator_fc_impl.h @@ -24,13 +24,13 @@ private: public: phase_modulator_fc_impl(double sensitivity); - ~phase_modulator_fc_impl(); + ~phase_modulator_fc_impl() override; - double sensitivity() const { return d_sensitivity; } - double phase() const { return d_phase; } + double sensitivity() const override { return d_sensitivity; } + double phase() const override { return d_phase; } - void set_sensitivity(double s) { d_sensitivity = s; } - void set_phase(double p) { d_phase = p; } + void set_sensitivity(double s) override { d_sensitivity = s; } + void set_phase(double p) override { d_phase = p; } int work(int noutput_items, gr_vector_const_void_star& input_items, |