about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-04-16 08:39:32 +0000
committerbors <bors@rust-lang.org>2023-04-16 08:39:32 +0000
commit18109d5032b0fd95ae81e30857a71e31e263044a (patch)
tree84a4c9a545295c8d485a18a8558f089b0ef1b8b4
parente6e956dade79bdc084dfe3078abab24656a1b483 (diff)
parent77821b2eb95733c399dea13db99d19053237de98 (diff)
downloadrust-18109d5032b0fd95ae81e30857a71e31e263044a.tar.gz
rust-18109d5032b0fd95ae81e30857a71e31e263044a.zip
Auto merge of #110391 - est31:remove_allow_unused, r=fee1-dead
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()