diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2020-10-30 18:22:33 +0100 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-11-03 14:07:23 -0500 |
commit | 0ddc7dbc95ca6fb4c4a62a3c027104d6dd71fc3b (patch) | |
tree | b454053fdc123711f3011b8a703de38e1d783ba3 /gr-digital/include/gnuradio/digital/adaptive_algorithm_lms.h | |
parent | 1cfd6287635e339b313e1826fdfda23f474c91c8 (diff) |
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gr-digital/include/gnuradio/digital/adaptive_algorithm_lms.h')
-rw-r--r-- | gr-digital/include/gnuradio/digital/adaptive_algorithm_lms.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/include/gnuradio/digital/adaptive_algorithm_lms.h b/gr-digital/include/gnuradio/digital/adaptive_algorithm_lms.h index 2be52b9fba..ee82190ef8 100644 --- a/gr-digital/include/gnuradio/digital/adaptive_algorithm_lms.h +++ b/gr-digital/include/gnuradio/digital/adaptive_algorithm_lms.h @@ -38,7 +38,7 @@ public: return adaptive_algorithm_lms::sptr(new adaptive_algorithm_lms(cons, step_size)); } - ~adaptive_algorithm_lms() {} + ~adaptive_algorithm_lms() override {} void update_taps(gr_complex* taps, const gr_complex* in, |