about summary refs log tree commit diff
path: root/library/alloc/src/macros.rs
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2022-05-20 08:54:10 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2022-05-27 07:36:17 -0400
commitb454991ac4eef89480679f595cbe81e0d5e23262 (patch)
tree8bea6122df07ce3dc72bd5733b2bff389a17c7d1 /library/alloc/src/macros.rs
parent46147119ec545045948bc799581d93edd3b1617b (diff)
downloadrust-b454991ac4eef89480679f595cbe81e0d5e23262.tar.gz
rust-b454991ac4eef89480679f595cbe81e0d5e23262.zip
Finish bumping stage0
It looks like the last time had left some remaining cfg's -- which made me think
that the stage0 bump was actually successful. This brings us to a released 1.62
beta though.
Diffstat (limited to 'library/alloc/src/macros.rs')
-rw-r--r--library/alloc/src/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/macros.rs b/library/alloc/src/macros.rs
index 093b02113c3..d9346daa109 100644
--- a/library/alloc/src/macros.rs
+++ b/library/alloc/src/macros.rs
@@ -56,7 +56,7 @@ macro_rules! vec {
 // `slice::into_vec`  function which is only available with cfg(test)
 // NB see the slice::hack module in slice.rs for more information
 #[cfg(all(not(no_global_oom_handling), test))]
-#[cfg_attr(not(bootstrap), allow(unused_macro_rules))]
+#[allow(unused_macro_rules)]
 macro_rules! vec {
     () => (
         $crate::vec::Vec::new()