missing override (#1039)
This commit is contained in:
parent
079598a87e
commit
4861bc24a9
|
@ -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;
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue