diff options
author | 2023-10-29 15:55:40 -0700 | |
---|---|---|
committer | 2023-10-29 15:55:40 -0700 | |
commit | 9adc81bee6a2a1cd21cd89f3b0904a79ec797955 (patch) | |
tree | 8038ce54ad43b38590d68dc0f7b099380c200f0c /cortex-m-semihosting/src/hio.rs | |
parent | 7f6ff8fb72eb333344c02147c06e7dc6801870c3 (diff) | |
download | cortex-m-9adc81bee6a2a1cd21cd89f3b0904a79ec797955.tar.gz cortex-m-9adc81bee6a2a1cd21cd89f3b0904a79ec797955.tar.zst cortex-m-9adc81bee6a2a1cd21cd89f3b0904a79ec797955.zip |
semihosting: silence clippy::result_unit_err in hio
Diffstat (limited to '')
-rw-r--r-- | cortex-m-semihosting/src/hio.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cortex-m-semihosting/src/hio.rs b/cortex-m-semihosting/src/hio.rs index b6b6c7b..e0614ad 100644 --- a/cortex-m-semihosting/src/hio.rs +++ b/cortex-m-semihosting/src/hio.rs @@ -1,5 +1,8 @@ //! Host I/O +// Fixing this lint requires a breaking change that does not add much value +#![allow(clippy::result_unit_err)] + use crate::nr; use core::{fmt, slice}; |