summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/rotator_cc_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-blocks/lib/rotator_cc_impl.h
parent1cfd6287635e339b313e1826fdfda23f474c91c8 (diff)
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gr-blocks/lib/rotator_cc_impl.h')
-rw-r--r--gr-blocks/lib/rotator_cc_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/rotator_cc_impl.h b/gr-blocks/lib/rotator_cc_impl.h
index f31d484063..c1001d11b3 100644
--- a/gr-blocks/lib/rotator_cc_impl.h
+++ b/gr-blocks/lib/rotator_cc_impl.h
@@ -28,9 +28,9 @@ private:
public:
rotator_cc_impl(double phase_inc = 0.0);
- ~rotator_cc_impl();
+ ~rotator_cc_impl() override;
- void set_phase_inc(double phase_inc);
+ void set_phase_inc(double phase_inc) override;
int work(int noutput_items,
gr_vector_const_void_star& input_items,