removed sif

This commit is contained in:
Robin Müller 2020-05-05 18:57:30 +02:00
parent a6b3cee898
commit 432dbbd26e
1 changed files with 4 additions and 0 deletions

View File

@ -89,6 +89,10 @@ uint32_t FixedSlotSequence::getLengthMs() const {
}
ReturnValue_t FixedSlotSequence::checkSequence() const {
if(slotList.empty()) {
error << "Fixed Slot Sequence: Slot list is empty!" << std::endl;
std::exit(0);
}
auto slotIt = slotList.begin();
uint32_t count = 0;
uint32_t time = 0;