1
0
forked from fsfw/fsfw

example compiles again

This commit is contained in:
2022-07-27 11:26:47 +02:00
parent 9eb652e585
commit 18ee2ab903
17 changed files with 95 additions and 40 deletions

View File

@ -33,8 +33,7 @@ class HasReturnvaluesIF {
* @param number
* @return
*/
[[deprecated("Use retval::makeCode instead")]] static constexpr ReturnValue_t makeReturnCode(
uint8_t classId, uint8_t number) {
static constexpr ReturnValue_t makeReturnCode(uint8_t classId, uint8_t number) {
return retval::makeCode(classId, number);
}
};