From 77821b2eb95733c399dea13db99d19053237de98 Mon Sep 17 00:00:00 2001 From: est31 Date: Sun, 16 Apr 2023 08:35:39 +0200 Subject: [PATCH] Remove unused unused_macros The macro is always used --- library/core/tests/num/ieee754.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/library/core/tests/num/ieee754.rs b/library/core/tests/num/ieee754.rs index f6e5dfc98c793..48ab75b6f17a5 100644 --- a/library/core/tests/num/ieee754.rs +++ b/library/core/tests/num/ieee754.rs @@ -39,7 +39,6 @@ macro_rules! assert_biteq { // ToString uses the default fmt::Display impl without special concerns, and bypasses other parts // of the formatting infrastructure, which makes it ideal for testing here. -#[allow(unused_macros)] macro_rules! roundtrip { ($f:expr => $t:ty) => { ($f).to_string().parse::<$t>().unwrap()