Release v5.0.0 #657

Merged
gaisser merged 578 commits from development into master 2022-07-25 15:05:57 +02:00
1 changed files with 2 additions and 6 deletions
Showing only changes of commit e0c7f8d51d - Show all commits

View File

@ -35,9 +35,7 @@ class PeriodicTaskIF {
return HasReturnvaluesIF::RETURN_FAILED;
};
virtual ReturnValue_t addComponent(object_id_t object) {
return addComponent(object, 0);
};
virtual ReturnValue_t addComponent(object_id_t object) { return addComponent(object, 0); };
/**
* Adds an object to the list of objects to be executed.
@ -49,9 +47,7 @@ class PeriodicTaskIF {
return HasReturnvaluesIF::RETURN_FAILED;
};
virtual ReturnValue_t addComponent(ExecutableObjectIF* object) {
return addComponent(object, 0);
}
virtual ReturnValue_t addComponent(ExecutableObjectIF* object) { return addComponent(object, 0); }
virtual ReturnValue_t sleepFor(uint32_t ms) = 0;