summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/plateau_detector_fb_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/plateau_detector_fb_impl.h')
-rw-r--r--gr-blocks/lib/plateau_detector_fb_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-blocks/lib/plateau_detector_fb_impl.h b/gr-blocks/lib/plateau_detector_fb_impl.h
index d0246f0b93..f2630ac8c5 100644
--- a/gr-blocks/lib/plateau_detector_fb_impl.h
+++ b/gr-blocks/lib/plateau_detector_fb_impl.h
@@ -24,7 +24,7 @@ private:
public:
plateau_detector_fb_impl(int max_len, float threshold);
- ~plateau_detector_fb_impl();
+ ~plateau_detector_fb_impl() override;
void forecast(int noutput_items, gr_vector_int& ninput_items_required) override;
@@ -33,8 +33,8 @@ public:
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
- virtual void set_threshold(float threshold);
- virtual float threshold() const;
+ void set_threshold(float threshold) override;
+ float threshold() const override;
};
} // namespace blocks