Skip to content

Commit e62c9d7

Browse files
committed
Stabilize underscore_const_names: stage0 -> bootstrap.
1 parent 48e863e commit e62c9d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/librustc_data_structures/macros.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// A simple static assertion macro.
22
#[macro_export]
3-
#[cfg_attr(stage0, allow_internal_unstable(type_ascription, underscore_const_names))]
4-
#[cfg_attr(not(stage0), allow_internal_unstable(type_ascription))]
3+
#[cfg_attr(bootstrap, allow_internal_unstable(type_ascription, underscore_const_names))]
4+
#[cfg_attr(not(bootstrap), allow_internal_unstable(type_ascription))]
55
macro_rules! static_assert {
66
($test:expr) => {
77
// Use the bool to access an array such that if the bool is false, the access
@@ -13,7 +13,7 @@ macro_rules! static_assert {
1313

1414
/// Type size assertion. The first argument is a type and the second argument is its expected size.
1515
#[macro_export]
16-
#[cfg_attr(stage0, allow_internal_unstable(underscore_const_names))]
16+
#[cfg_attr(bootstrap, allow_internal_unstable(underscore_const_names))]
1717
macro_rules! static_assert_size {
1818
($ty:ty, $size:expr) => {
1919
const _: [(); $size] = [(); ::std::mem::size_of::<$ty>()];

0 commit comments

Comments
 (0)