From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/tools/clippy/tests/ui/float_cmp.stderr | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/tools/clippy/tests/ui/float_cmp.stderr (limited to 'src/tools/clippy/tests/ui/float_cmp.stderr') diff --git a/src/tools/clippy/tests/ui/float_cmp.stderr b/src/tools/clippy/tests/ui/float_cmp.stderr new file mode 100644 index 000000000..9cc1f1b75 --- /dev/null +++ b/src/tools/clippy/tests/ui/float_cmp.stderr @@ -0,0 +1,51 @@ +error: strict comparison of `f32` or `f64` + --> $DIR/float_cmp.rs:57:5 + | +LL | ONE as f64 != 2.0; + | ^^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(ONE as f64 - 2.0).abs() > error_margin` + | + = note: `-D clippy::float-cmp` implied by `-D warnings` + = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin` + +error: strict comparison of `f32` or `f64` + --> $DIR/float_cmp.rs:62:5 + | +LL | x == 1.0; + | ^^^^^^^^ help: consider comparing them within some margin of error: `(x - 1.0).abs() < error_margin` + | + = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin` + +error: strict comparison of `f32` or `f64` + --> $DIR/float_cmp.rs:65:5 + | +LL | twice(x) != twice(ONE as f64); + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(twice(x) - twice(ONE as f64)).abs() > error_margin` + | + = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin` + +error: strict comparison of `f32` or `f64` + --> $DIR/float_cmp.rs:85:5 + | +LL | NON_ZERO_ARRAY[i] == NON_ZERO_ARRAY[j]; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(NON_ZERO_ARRAY[i] - NON_ZERO_ARRAY[j]).abs() < error_margin` + | + = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin` + +error: strict comparison of `f32` or `f64` arrays + --> $DIR/float_cmp.rs:90:5 + | +LL | a1 == a2; + | ^^^^^^^^ + | + = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin` + +error: strict comparison of `f32` or `f64` + --> $DIR/float_cmp.rs:91:5 + | +LL | a1[0] == a2[0]; + | ^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(a1[0] - a2[0]).abs() < error_margin` + | + = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin` + +error: aborting due to 6 previous errors + -- cgit v1.2.3