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 /gnuradio-runtime/lib/scheduler_tpb.h | |
parent | 1cfd6287635e339b313e1826fdfda23f474c91c8 (diff) |
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gnuradio-runtime/lib/scheduler_tpb.h')
-rw-r--r-- | gnuradio-runtime/lib/scheduler_tpb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-runtime/lib/scheduler_tpb.h b/gnuradio-runtime/lib/scheduler_tpb.h index aa116d828b..a9c47f86bf 100644 --- a/gnuradio-runtime/lib/scheduler_tpb.h +++ b/gnuradio-runtime/lib/scheduler_tpb.h @@ -38,17 +38,17 @@ public: int max_noutput_items = 100000, bool catch_exceptions = true); - ~scheduler_tpb(); + ~scheduler_tpb() override; /*! * \brief Tell the scheduler to stop executing. */ - void stop(); + void stop() override; /*! * \brief Block until the graph is done. */ - void wait(); + void wait() override; }; } /* namespace gr */ |