Skip to content

Commit 8fd2dc0

Browse files
committed
Update #[cfg(bootstrap)]
1 parent 25c7bd9 commit 8fd2dc0

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

compiler/rustc_index/src/idx.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ impl<I: Idx, T> IntoSliceIdx<I, [T]> for core::range::RangeInclusive<I> {
135135
}
136136
}
137137

138-
#[cfg(all(feature = "nightly", not(bootstrap)))]
138+
#[cfg(feature = "nightly")]
139139
impl<I: Idx, T> IntoSliceIdx<I, [T]> for core::range::RangeToInclusive<I> {
140140
type Output = core::range::RangeToInclusive<usize>;
141141
#[inline]

compiler/rustc_index/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// tidy-alphabetical-start
22
#![cfg_attr(all(feature = "nightly", test), feature(stmt_expr_attributes))]
3-
#![cfg_attr(bootstrap, feature(new_zeroed_alloc))]
43
#![cfg_attr(feature = "nightly", allow(internal_features))]
54
#![cfg_attr(feature = "nightly", feature(extend_one, step_trait, test))]
65
#![cfg_attr(feature = "nightly", feature(new_range_api))]

src/tools/miri/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#![feature(derive_coerce_pointee)]
1818
#![feature(arbitrary_self_types)]
1919
#![feature(iter_advance_by)]
20-
#![cfg_attr(not(bootstrap), feature(duration_from_nanos_u128))]
20+
#![feature(duration_from_nanos_u128)]
2121
// Configure clippy and other lints
2222
#![allow(
2323
clippy::collapsible_else_if,

0 commit comments

Comments
 (0)