diff options
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 */ |