File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ impl<T: Ord, const N: usize> Ord for [T; N] {
354
354
}
355
355
356
356
/// This module implements `Default` for arrays.
357
- #[ cfg( not( bootstrap) ) ]
357
+ // #[cfg(not(bootstrap))]
358
358
mod default_impls {
359
359
// A trait implemented by all arrays which are either empty or contain a type implementing `Default`.
360
360
#[ unstable(
@@ -405,7 +405,7 @@ mod default_impls {
405
405
}
406
406
}
407
407
408
- #[ cfg( bootstrap) ]
408
+ /* #[cfg(bootstrap)]
409
409
mod default_impls {
410
410
macro_rules! array_impl_default {
411
411
{$n:expr, $t:ident $($ts:ident)*} => {
@@ -426,7 +426,7 @@ mod default_impls {
426
426
}
427
427
428
428
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}
429
- }
429
+ }*/
430
430
431
431
#[ lang = "array" ]
432
432
impl < T , const N : usize > [ T ; N ] {
You can’t perform that action at this time.
0 commit comments