From 2680f719653dc9f9acc0e54ef570d3ea5af5e6b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Mon, 7 Apr 2025 09:21:15 +0200 Subject: [PATCH] Add FIXME prefix to temporary workaround See https://github.com/rust-embedded/heapless/pull/500#discussion_r2029972717 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b7f98693ba..4ae157bd0c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -181,7 +181,7 @@ pub mod storage; pub mod string; pub mod vec; -// Workaround a compiler ICE in rust 1.83 to 1.86 +// FIXME: Workaround a compiler ICE in rust 1.83 to 1.86 // https://github.com/rust-lang/rust/issues/138979#issuecomment-2760839948 #[expect(dead_code)] fn dead_code_ice_workaround() {}