summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/peak_detector2_fb_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/peak_detector2_fb_impl.h')
-rw-r--r--gr-blocks/lib/peak_detector2_fb_impl.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gr-blocks/lib/peak_detector2_fb_impl.h b/gr-blocks/lib/peak_detector2_fb_impl.h
index 62571c0baa..8432d64eaa 100644
--- a/gr-blocks/lib/peak_detector2_fb_impl.h
+++ b/gr-blocks/lib/peak_detector2_fb_impl.h
@@ -31,15 +31,15 @@ private:
public:
peak_detector2_fb_impl(float threshold_factor_rise, int look_ahead, float alpha);
- ~peak_detector2_fb_impl();
+ ~peak_detector2_fb_impl() override;
- void set_threshold_factor_rise(float thr);
- void set_look_ahead(int look);
- void set_alpha(float alpha);
+ void set_threshold_factor_rise(float thr) override;
+ void set_look_ahead(int look) override;
+ void set_alpha(float alpha) override;
- float threshold_factor_rise() { return d_threshold_factor_rise; }
- int look_ahead() { return d_look_ahead; }
- float alpha() { return d_alpha; }
+ float threshold_factor_rise() override { return d_threshold_factor_rise; }
+ int look_ahead() override { return d_look_ahead; }
+ float alpha() override { return d_alpha; }
int work(int noutput_items,
gr_vector_const_void_star& input_items,