apply afmt

This commit is contained in:
Robin Müller 2022-05-30 11:25:28 +02:00 committed by Gitea
parent eb79386c92
commit e0c7f8d51d
1 changed files with 2 additions and 6 deletions

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;