Missing return value. This is an error and can fail builds if warnings-as-errors is turned on for this issue. I believe this can also cause resets or other undefined behaviour if code tries to use the non-existent return value.
The method signature either needs a return type of void, or the method needs to return a value.
Missing return value. This is an error and can fail builds if warnings-as-errors is turned on for this issue. I believe this can also cause resets or other undefined behaviour if code tries to use the non-existent return value.
The method signature either needs a return type of
void
, or the method needs to return a value.