| 101 | FL_NOEXCEPT : is_ok(true), error_message(), error_code(SPIError::NOT_INITIALIZED) {} |
| 102 | |
| 103 | SPITransmitResult SPITransmitResult::success() FL_NOEXCEPT { |
| 104 | return SPITransmitResult(); |
| 105 | } |
| 106 | |
| 107 | SPITransmitResult SPITransmitResult::error(SPIError err, const fl::string& msg) FL_NOEXCEPT { |
| 108 | SPITransmitResult result; |
nothing calls this directly
no test coverage detected