@@ -2074,10 +2074,10 @@ macro_rules! uint_impl {
2074
2074
/// Basic usage:
2075
2075
///
2076
2076
/// ```
2077
- /// #![feature(int_roundings)]
2078
2077
#[ doc = concat!( "assert_eq!(7_" , stringify!( $SelfT) , ".div_ceil(4), 2);" ) ]
2079
2078
/// ```
2080
- #[ unstable( feature = "int_roundings" , issue = "88581" ) ]
2079
+ #[ stable( feature = "int_roundings1" , since = "CURRENT_RUSTC_VERSION" ) ]
2080
+ #[ rustc_const_stable( feature = "int_roundings1" , since = "CURRENT_RUSTC_VERSION" ) ]
2081
2081
#[ must_use = "this returns the result of the operation, \
2082
2082
without modifying the original"]
2083
2083
#[ inline]
@@ -2109,11 +2109,11 @@ macro_rules! uint_impl {
2109
2109
/// Basic usage:
2110
2110
///
2111
2111
/// ```
2112
- /// #![feature(int_roundings)]
2113
2112
#[ doc = concat!( "assert_eq!(16_" , stringify!( $SelfT) , ".next_multiple_of(8), 16);" ) ]
2114
2113
#[ doc = concat!( "assert_eq!(23_" , stringify!( $SelfT) , ".next_multiple_of(8), 24);" ) ]
2115
2114
/// ```
2116
- #[ unstable( feature = "int_roundings" , issue = "88581" ) ]
2115
+ #[ stable( feature = "int_roundings1" , since = "CURRENT_RUSTC_VERSION" ) ]
2116
+ #[ rustc_const_stable( feature = "int_roundings1" , since = "CURRENT_RUSTC_VERSION" ) ]
2117
2117
#[ must_use = "this returns the result of the operation, \
2118
2118
without modifying the original"]
2119
2119
#[ inline]
@@ -2134,13 +2134,13 @@ macro_rules! uint_impl {
2134
2134
/// Basic usage:
2135
2135
///
2136
2136
/// ```
2137
- /// #![feature(int_roundings)]
2138
2137
#[ doc = concat!( "assert_eq!(16_" , stringify!( $SelfT) , ".checked_next_multiple_of(8), Some(16));" ) ]
2139
2138
#[ doc = concat!( "assert_eq!(23_" , stringify!( $SelfT) , ".checked_next_multiple_of(8), Some(24));" ) ]
2140
2139
#[ doc = concat!( "assert_eq!(1_" , stringify!( $SelfT) , ".checked_next_multiple_of(0), None);" ) ]
2141
2140
#[ doc = concat!( "assert_eq!(" , stringify!( $SelfT) , "::MAX.checked_next_multiple_of(2), None);" ) ]
2142
2141
/// ```
2143
- #[ unstable( feature = "int_roundings" , issue = "88581" ) ]
2142
+ #[ stable( feature = "int_roundings1" , since = "CURRENT_RUSTC_VERSION" ) ]
2143
+ #[ rustc_const_stable( feature = "int_roundings1" , since = "CURRENT_RUSTC_VERSION" ) ]
2144
2144
#[ must_use = "this returns the result of the operation, \
2145
2145
without modifying the original"]
2146
2146
#[ inline]
0 commit comments