missing override (#1039)

This commit is contained in:
Matthew Kennedy 2019-12-02 20:52:35 -08:00 committed by rusefi
parent 3298283973
commit 3008e19110
2 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@
class SingleTimerExecutor : public ExecutorInterface { class SingleTimerExecutor : public ExecutorInterface {
public: public:
SingleTimerExecutor(); SingleTimerExecutor();
void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, 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); void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param) override;
void onTimerCallback(); void onTimerCallback();
int timerCallbackCounter; int timerCallbackCounter;
int scheduleCounter; int scheduleCounter;

View File

@ -13,8 +13,8 @@
class TestExecutor : public ExecutorInterface { class TestExecutor : public ExecutorInterface {
public: public:
void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, 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); void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param) override;
void clear(); void clear();
int executeAll(efitime_t now); int executeAll(efitime_t now);
int size(); int size();