1
0
forked from fsfw/fsfw

typedef in class declaration now

This commit is contained in:
2020-06-24 12:02:01 +02:00
parent 918329163f
commit df418ae1b4
2 changed files with 5 additions and 6 deletions

View File

@ -82,7 +82,7 @@ ReturnValue_t FixedTimeslotTask::checkSequence() const {
void FixedTimeslotTask::taskFunctionality() {
// A local iterator for the Polling Sequence Table is created to find the start time for the first entry.
SlotListIter slotListIter = pst.current;
auto slotListIter = pst.current;
//The start time for the first entry is read.
uint32_t intervalMs = slotListIter->pollingTimeMs;