Codechange: validate the developer didn't schedule two timers on the same trigger/priority

This commit is contained in:
Patric Stout
2023-04-13 19:26:17 +02:00
committed by Patric Stout
parent 3ebc7ad16e
commit 387d5eb74f
4 changed files with 44 additions and 0 deletions

View File

@@ -58,3 +58,10 @@ void TimerManager<TimerWindow>::Elapsed(TimerWindow::TElapsed delta)
timer->Elapsed(delta);
}
}
#ifdef WITH_ASSERT
template<>
void TimerManager<TimerWindow>::Validate(TimerWindow::TPeriod period)
{
}
#endif /* WITH_ASSERT */