summaryrefslogtreecommitdiff
path: root/gr-vocoder/lib/freedv_rx_ss_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-vocoder/lib/freedv_rx_ss_impl.h
parent1cfd6287635e339b313e1826fdfda23f474c91c8 (diff)
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gr-vocoder/lib/freedv_rx_ss_impl.h')
-rw-r--r--gr-vocoder/lib/freedv_rx_ss_impl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-vocoder/lib/freedv_rx_ss_impl.h b/gr-vocoder/lib/freedv_rx_ss_impl.h
index 71b92ba5c8..6a6c8a55b9 100644
--- a/gr-vocoder/lib/freedv_rx_ss_impl.h
+++ b/gr-vocoder/lib/freedv_rx_ss_impl.h
@@ -46,11 +46,11 @@ private:
public:
freedv_rx_ss_impl(int mode, float squelch_thresh, int interleave_frames);
- ~freedv_rx_ss_impl();
+ ~freedv_rx_ss_impl() override;
- void set_squelch_thresh(float squelch_thresh);
- float squelch_thresh();
- void set_squelch_en(bool squelch_enabled);
+ void set_squelch_thresh(float squelch_thresh) override;
+ float squelch_thresh() override;
+ void set_squelch_en(bool squelch_enabled) override;
// Where all the action really happens
void forecast(int noutput_items, gr_vector_int& ninput_items_required) override;