summaryrefslogtreecommitdiff
path: root/gr-analog/lib/cpfsk_bc_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-analog/lib/cpfsk_bc_impl.h
parent1cfd6287635e339b313e1826fdfda23f474c91c8 (diff)
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gr-analog/lib/cpfsk_bc_impl.h')
-rw-r--r--gr-analog/lib/cpfsk_bc_impl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-analog/lib/cpfsk_bc_impl.h b/gr-analog/lib/cpfsk_bc_impl.h
index a8392da248..3506530ee6 100644
--- a/gr-analog/lib/cpfsk_bc_impl.h
+++ b/gr-analog/lib/cpfsk_bc_impl.h
@@ -24,12 +24,12 @@ private:
public:
cpfsk_bc_impl(float k, float ampl, int samples_per_sym);
- ~cpfsk_bc_impl();
+ ~cpfsk_bc_impl() override;
- void set_amplitude(float amplitude) { d_ampl = amplitude; }
- float amplitude() { return d_ampl; }
- float freq() { return d_freq; }
- float phase() { return d_phase; }
+ void set_amplitude(float amplitude) override { d_ampl = amplitude; }
+ float amplitude() override { return d_ampl; }
+ float freq() override { return d_freq; }
+ float phase() override { return d_phase; }
int work(int noutput_items,
gr_vector_const_void_star& input_items,