File tree 5 files changed +2
-9
lines changed
5 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -102,8 +102,6 @@ impl f32 {
102
102
/// # Examples
103
103
///
104
104
/// ```
105
- /// #![feature(round_ties_even)]
106
- ///
107
105
/// let f = 3.3_f32;
108
106
/// let g = -3.3_f32;
109
107
/// let h = 3.5_f32;
@@ -116,7 +114,7 @@ impl f32 {
116
114
/// ```
117
115
#[ rustc_allow_incoherent_impl]
118
116
#[ must_use = "method returns a new number and does not mutate the original value" ]
119
- #[ unstable ( feature = "round_ties_even" , issue = "96710 " ) ]
117
+ #[ stable ( feature = "round_ties_even" , since = "CURRENT_RUSTC_VERSION " ) ]
120
118
#[ inline]
121
119
pub fn round_ties_even ( self ) -> f32 {
122
120
unsafe { intrinsics:: rintf32 ( self ) }
Original file line number Diff line number Diff line change @@ -102,8 +102,6 @@ impl f64 {
102
102
/// # Examples
103
103
///
104
104
/// ```
105
- /// #![feature(round_ties_even)]
106
- ///
107
105
/// let f = 3.3_f64;
108
106
/// let g = -3.3_f64;
109
107
/// let h = 3.5_f64;
@@ -116,7 +114,7 @@ impl f64 {
116
114
/// ```
117
115
#[ rustc_allow_incoherent_impl]
118
116
#[ must_use = "method returns a new number and does not mutate the original value" ]
119
- #[ unstable ( feature = "round_ties_even" , issue = "96710 " ) ]
117
+ #[ stable ( feature = "round_ties_even" , since = "CURRENT_RUSTC_VERSION " ) ]
120
118
#[ inline]
121
119
pub fn round_ties_even ( self ) -> f64 {
122
120
unsafe { intrinsics:: rintf64 ( self ) }
Original file line number Diff line number Diff line change 338
338
#![ feature( prelude_2024) ]
339
339
#![ feature( ptr_as_uninit) ]
340
340
#![ feature( raw_os_nonzero) ]
341
- #![ feature( round_ties_even) ]
342
341
#![ feature( slice_internals) ]
343
342
#![ feature( slice_ptr_get) ]
344
343
#![ feature( slice_range) ]
Original file line number Diff line number Diff line change 8
8
#![ feature( variant_count) ]
9
9
#![ feature( yeet_expr) ]
10
10
#![ feature( nonzero_ops) ]
11
- #![ feature( round_ties_even) ]
12
11
#![ feature( let_chains) ]
13
12
#![ feature( lint_reasons) ]
14
13
#![ feature( int_roundings) ]
Original file line number Diff line number Diff line change 1
1
#![ feature( stmt_expr_attributes) ]
2
- #![ feature( round_ties_even) ]
3
2
#![ feature( float_gamma) ]
4
3
#![ allow( arithmetic_overflow) ]
5
4
You can’t perform that action at this time.
0 commit comments