mohr_serialize_merged_master #123

Closed
muellerr wants to merge 84 commits from mohr_serialize_merged_master into mohr_serialize
Showing only changes of commit 432dbbd26e - Show all commits

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;