about summary refs log tree commit diff
path: root/library/core/src/array
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2022-04-05 22:42:23 +0200
committerPietro Albini <pietro@pietroalbini.org>2022-04-05 23:18:40 +0200
commit181d28bb6110dc974879db20d433f21aa142db3a (patch)
tree3bbc185fd9386b9cc050235fd1785820fcaaae5c /library/core/src/array
parente96538aeeb2a71e672e1d1a40dcaf0ad34a826b5 (diff)
downloadrust-181d28bb6110dc974879db20d433f21aa142db3a.tar.gz
rust-181d28bb6110dc974879db20d433f21aa142db3a.zip
trivial cfg(bootstrap) changes
Diffstat (limited to 'library/core/src/array')
-rw-r--r--library/core/src/array/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs
index 9e42ab5923a..af661e485f5 100644
--- a/library/core/src/array/mod.rs
+++ b/library/core/src/array/mod.rs
@@ -395,7 +395,6 @@ macro_rules! array_impl_default {
 
 array_impl_default! {32, T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T}
 
-#[cfg_attr(bootstrap, lang = "array")]
 impl<T, const N: usize> [T; N] {
     /// Returns an array of the same size as `self`, with function `f` applied to each element
     /// in order.