File tree 1 file changed +3
-3
lines changed
src/librustc_data_structures
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/// A simple static assertion macro.
2
2
#[ 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) ) ]
5
5
macro_rules! static_assert {
6
6
( $test: expr) => {
7
7
// Use the bool to access an array such that if the bool is false, the access
@@ -13,7 +13,7 @@ macro_rules! static_assert {
13
13
14
14
/// Type size assertion. The first argument is a type and the second argument is its expected size.
15
15
#[ macro_export]
16
- #[ cfg_attr( stage0 , allow_internal_unstable( underscore_const_names) ) ]
16
+ #[ cfg_attr( bootstrap , allow_internal_unstable( underscore_const_names) ) ]
17
17
macro_rules! static_assert_size {
18
18
( $ty: ty, $size: expr) => {
19
19
const _: [ ( ) ; $size] = [ ( ) ; :: std:: mem:: size_of:: <$ty>( ) ] ;
You can’t perform that action at this time.
0 commit comments