diff --git a/firmware/controllers/scheduling/single_timer_executor.h b/firmware/controllers/scheduling/single_timer_executor.h index 49461ab8d8..cb844c3d76 100644 --- a/firmware/controllers/scheduling/single_timer_executor.h +++ b/firmware/controllers/scheduling/single_timer_executor.h @@ -14,8 +14,8 @@ class SingleTimerExecutor : public ExecutorInterface { public: SingleTimerExecutor(); - void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, schfunc_t callback, void *param); - void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param); + void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, schfunc_t callback, void *param) override; + void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param) override; void onTimerCallback(); int timerCallbackCounter; int scheduleCounter; diff --git a/unit_tests/global_execution_queue.h b/unit_tests/global_execution_queue.h index 43d39da3d8..c8a605c021 100644 --- a/unit_tests/global_execution_queue.h +++ b/unit_tests/global_execution_queue.h @@ -13,8 +13,8 @@ class TestExecutor : public ExecutorInterface { public: - void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, schfunc_t callback, void *param); - void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param); + void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, schfunc_t callback, void *param) override; + void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param) override; void clear(); int executeAll(efitime_t now); int size();