diff options
| author | Jules Bertholet <julesbertholet@quoi.xyz> | 2022-07-08 21:57:38 -0400 |
|---|---|---|
| committer | Jules Bertholet <julesbertholet@quoi.xyz> | 2022-12-11 01:20:18 -0500 |
| commit | 03c166d3893aba971beecaf65d0722f44a786ecf (patch) | |
| tree | ceeb7c448660a89b1181481ed6db54473b03edea | |
| parent | be681fefed254c06139ab055b07cfd6f8b30bacf (diff) | |
| download | rust-03c166d3893aba971beecaf65d0722f44a786ecf.tar.gz rust-03c166d3893aba971beecaf65d0722f44a786ecf.zip | |
Add tracking issue
| -rw-r--r-- | library/std/src/f32.rs | 2 | ||||
| -rw-r--r-- | library/std/src/f64.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/f32.rs b/library/std/src/f32.rs index a2c65e02577..d92eb45e96c 100644 --- a/library/std/src/f32.rs +++ b/library/std/src/f32.rs @@ -116,7 +116,7 @@ impl f32 { #[cfg(not(bootstrap))] #[cfg_attr(not(bootstrap), rustc_allow_incoherent_impl)] #[must_use = "method returns a new number and does not mutate the original value"] - #[unstable(feature = "round_ties_even", issue = "none")] + #[unstable(feature = "round_ties_even", issue = "96710")] #[inline] pub fn round_ties_even(self) -> f32 { unsafe { intrinsics::roundevenf32(self) } diff --git a/library/std/src/f64.rs b/library/std/src/f64.rs index 85dfb102c7d..2e98495fad3 100644 --- a/library/std/src/f64.rs +++ b/library/std/src/f64.rs @@ -116,7 +116,7 @@ impl f64 { #[cfg(not(bootstrap))] #[cfg_attr(not(bootstrap), rustc_allow_incoherent_impl)] #[must_use = "method returns a new number and does not mutate the original value"] - #[unstable(feature = "round_ties_even", issue = "none")] + #[unstable(feature = "round_ties_even", issue = "96710")] #[inline] pub fn round_ties_even(self) -> f64 { unsafe { intrinsics::roundevenf64(self) } |
