Add tracking issue

This commit is contained in:
Jules Bertholet 2022-07-08 21:57:38 -04:00
parent be681fefed
commit 03c166d389
No known key found for this signature in database
GPG Key ID: 32034DAFC38C1BFC
2 changed files with 2 additions and 2 deletions

View File

@ -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) }

View File

@ -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) }