rust/tests/ui/float_cmp.stderr

52 lines
1.9 KiB
Text
Raw Normal View History

2020-01-06 07:36:33 +01:00
error: strict comparison of `f32` or `f64`
--> $DIR/float_cmp.rs:58:5
|
2018-12-27 16:57:55 +01:00
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`
2020-01-06 07:36:33 +01:00
error: strict comparison of `f32` or `f64`
--> $DIR/float_cmp.rs:63:5
|
2018-12-27 16:57:55 +01:00
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`
2020-01-06 07:36:33 +01:00
error: strict comparison of `f32` or `f64`
--> $DIR/float_cmp.rs:66:5
|
2018-12-27 16:57:55 +01:00
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`
2020-03-17 10:32:20 +01:00
error: strict comparison of `f32` or `f64`
--> $DIR/float_cmp.rs:86:5
|
2020-03-20 11:42:39 +01:00
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`
2020-03-20 11:42:39 +01:00
error: strict comparison of `f32` or `f64` arrays
--> $DIR/float_cmp.rs:91:5
2020-03-20 11:42:39 +01:00
|
LL | a1 == a2;
| ^^^^^^^^
|
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2020-03-17 10:32:20 +01:00
error: strict comparison of `f32` or `f64`
--> $DIR/float_cmp.rs:92:5
|
2020-03-20 11:42:39 +01:00
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`
2020-03-20 11:42:39 +01:00
error: aborting due to 6 previous errors
2018-01-16 17:06:27 +01:00