aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/fmt.rs
diff options
context:
space:
mode:
authorKarun Koppula <[email protected]>2024-04-02 15:51:50 -0400
committerGitHub <[email protected]>2024-04-02 15:51:50 -0400
commit9344f55ff3107917ce1b765bc4fa57965ec86ca6 (patch)
tree4ca4936f84d4ad9ecf85a0129159b6d6d20c53cd /embassy-executor/src/fmt.rs
parent2caea89b6ab9859470ccf6c7d7414c01251bbecd (diff)
parent990f2717673de5e6de6be6a9fb001bc0c8d34745 (diff)
Merge branch 'main' into karun/main_octospi_implementation
Diffstat (limited to 'embassy-executor/src/fmt.rs')
-rw-r--r--embassy-executor/src/fmt.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/embassy-executor/src/fmt.rs b/embassy-executor/src/fmt.rs
index 78e583c1c..2ac42c557 100644
--- a/embassy-executor/src/fmt.rs
+++ b/embassy-executor/src/fmt.rs
@@ -1,5 +1,5 @@
1#![macro_use] 1#![macro_use]
2#![allow(unused_macros)] 2#![allow(unused)]
3 3
4use core::fmt::{Debug, Display, LowerHex}; 4use core::fmt::{Debug, Display, LowerHex};
5 5
@@ -229,7 +229,6 @@ impl<T, E> Try for Result<T, E> {
229 } 229 }
230} 230}
231 231
232#[allow(unused)]
233pub(crate) struct Bytes<'a>(pub &'a [u8]); 232pub(crate) struct Bytes<'a>(pub &'a [u8]);
234 233
235impl<'a> Debug for Bytes<'a> { 234impl<'a> Debug for Bytes<'a> {