Skip to content

Commit 03c166d

Browse files
Add tracking issue
1 parent be681fe commit 03c166d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/f32.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl f32 {
116116
#[cfg(not(bootstrap))]
117117
#[cfg_attr(not(bootstrap), rustc_allow_incoherent_impl)]
118118
#[must_use = "method returns a new number and does not mutate the original value"]
119-
#[unstable(feature = "round_ties_even", issue = "none")]
119+
#[unstable(feature = "round_ties_even", issue = "96710")]
120120
#[inline]
121121
pub fn round_ties_even(self) -> f32 {
122122
unsafe { intrinsics::roundevenf32(self) }

library/std/src/f64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl f64 {
116116
#[cfg(not(bootstrap))]
117117
#[cfg_attr(not(bootstrap), rustc_allow_incoherent_impl)]
118118
#[must_use = "method returns a new number and does not mutate the original value"]
119-
#[unstable(feature = "round_ties_even", issue = "none")]
119+
#[unstable(feature = "round_ties_even", issue = "96710")]
120120
#[inline]
121121
pub fn round_ties_even(self) -> f64 {
122122
unsafe { intrinsics::roundevenf64(self) }

0 commit comments

Comments
 (0)