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-blocks/lib/file_meta_sink_impl.h | |
parent | 1cfd6287635e339b313e1826fdfda23f474c91c8 (diff) |
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gr-blocks/lib/file_meta_sink_impl.h')
-rw-r--r-- | gr-blocks/lib/file_meta_sink_impl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-blocks/lib/file_meta_sink_impl.h b/gr-blocks/lib/file_meta_sink_impl.h index 4352e3f646..5684be2e70 100644 --- a/gr-blocks/lib/file_meta_sink_impl.h +++ b/gr-blocks/lib/file_meta_sink_impl.h @@ -60,13 +60,13 @@ public: size_t max_segment_size = 1000000, pmt::pmt_t extra_dict = pmt::make_dict(), bool detached_header = false); - ~file_meta_sink_impl(); + ~file_meta_sink_impl() override; - bool open(const std::string& filename); - void close(); - void do_update(); + bool open(const std::string& filename) override; + void close() override; + void do_update() override; - void set_unbuffered(bool unbuffered) { d_unbuffered = unbuffered; } + void set_unbuffered(bool unbuffered) override { d_unbuffered = unbuffered; } int work(int noutput_items, gr_vector_const_void_star& input_items, |