Skip to content

Commit 66da735

Browse files
committed
Add tracing issue for total_cmp
1 parent 8bc31ff commit 66da735

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libcore/num/f32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ impl f32 {
851851
/// # .zip([-5.0, 0.1, 10.0, 99.0, f32::INFINITY, f32::NAN].iter())
852852
/// # .all(|(a, b)| a.to_bits() == b.to_bits()))
853853
/// ```
854-
#[unstable(feature = "total_cmp", issue = "none")]
854+
#[unstable(feature = "total_cmp", issue = "72599")]
855855
#[inline]
856856
pub fn total_cmp(&self, other: &Self) -> crate::cmp::Ordering {
857857
let mut left = self.to_bits() as i32;

src/libcore/num/f64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ impl f64 {
865865
/// # .zip([-5.0, 0.1, 10.0, 99.0, f64::INFINITY, f64::NAN].iter())
866866
/// # .all(|(a, b)| a.to_bits() == b.to_bits()))
867867
/// ```
868-
#[unstable(feature = "total_cmp", issue = "none")]
868+
#[unstable(feature = "total_cmp", issue = "72599")]
869869
#[inline]
870870
pub fn total_cmp(&self, other: &Self) -> crate::cmp::Ordering {
871871
let mut left = self.to_bits() as i64;

0 commit comments

Comments
 (0)