apply auto-formatter
This commit is contained in:
@ -12,8 +12,8 @@
|
||||
typedef uint16_t ReturnValue_t;
|
||||
|
||||
namespace returnvalue {
|
||||
static const ReturnValue_t OK = 0;
|
||||
static const ReturnValue_t FAILED = 1;
|
||||
static const ReturnValue_t OK = 0;
|
||||
static const ReturnValue_t FAILED = 1;
|
||||
|
||||
/**
|
||||
* It is discouraged to use the input parameters 0,0 and 0,1 as this
|
||||
@ -22,11 +22,10 @@ namespace returnvalue {
|
||||
* @param number
|
||||
* @return
|
||||
*/
|
||||
static constexpr ReturnValue_t makeCode(
|
||||
uint8_t classId, uint8_t number) {
|
||||
static constexpr ReturnValue_t makeCode(uint8_t classId, uint8_t number) {
|
||||
return (static_cast<ReturnValue_t>(classId) << 8) + number;
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace returnvalue
|
||||
|
||||
#endif /* FSFW_RETURNVALUES_RETURNVALUE_H_ */
|
||||
|
Reference in New Issue
Block a user