about summary refs log tree commit diff
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2023-04-16 08:35:39 +0200
committerest31 <MTest31@outlook.com>2023-04-16 08:35:39 +0200
commit77821b2eb95733c399dea13db99d19053237de98 (patch)
treed791dd8b86b36615c37a57b74ba64d35da31af57
parent2a711152615ad9294dc0e5ee6885c8e9bb8418a9 (diff)
downloadrust-77821b2eb95733c399dea13db99d19053237de98.tar.gz
rust-77821b2eb95733c399dea13db99d19053237de98.zip
Remove unused unused_macros
The macro is always used
-rw-r--r--library/core/tests/num/ieee754.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/core/tests/num/ieee754.rs b/library/core/tests/num/ieee754.rs
index f6e5dfc98c7..48ab75b6f17 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()