Skip to content

Commit 3310a0b

Browse files
committed
[Clippy] Swap float_equality_without_abs to use diagnostic items instead of paths
1 parent 6ef72c4 commit 3310a0b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

core/src/num/f32.rs

+1
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,7 @@ impl f32 {
415415
/// [Machine epsilon]: https://en.wikipedia.org/wiki/Machine_epsilon
416416
/// [`MANTISSA_DIGITS`]: f32::MANTISSA_DIGITS
417417
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
418+
#[cfg_attr(not(test), rustc_diagnostic_item = "f32_epsilon")]
418419
pub const EPSILON: f32 = 1.19209290e-07_f32;
419420

420421
/// Smallest finite `f32` value.

core/src/num/f64.rs

+1
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,7 @@ impl f64 {
414414
/// [Machine epsilon]: https://en.wikipedia.org/wiki/Machine_epsilon
415415
/// [`MANTISSA_DIGITS`]: f64::MANTISSA_DIGITS
416416
#[stable(feature = "assoc_int_consts", since = "1.43.0")]
417+
#[cfg_attr(not(test), rustc_diagnostic_item = "f64_epsilon")]
417418
pub const EPSILON: f64 = 2.2204460492503131e-16_f64;
418419

419420
/// Smallest finite `f64` value.

0 commit comments

Comments
 (0)