2020-01-06 00:36:33 -06:00
error: strict comparison of `f32` or `f64`
2024-02-17 06:16:29 -06:00
--> tests/ui/float_cmp.rs:70:5
2017-02-07 14:05:30 -06:00
|
2018-12-27 09:57:55 -06:00
LL | ONE as f64 != 2.0;
2020-09-24 07:49:22 -05:00
| ^^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(ONE as f64 - 2.0).abs() > error_margin`
2017-02-07 14:05:30 -06:00
|
2020-09-24 07:49:22 -05:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2022-09-22 11:04:22 -05:00
= note: `-D clippy::float-cmp` implied by `-D warnings`
2023-08-01 07:02:21 -05:00
= help: to override `-D warnings` add `#[allow(clippy::float_cmp)]`
2017-02-07 14:05:30 -06:00
2020-01-06 00:36:33 -06:00
error: strict comparison of `f32` or `f64`
2024-02-17 06:16:29 -06:00
--> tests/ui/float_cmp.rs:77:5
2017-02-07 14:05:30 -06:00
|
2018-12-27 09:57:55 -06:00
LL | x == 1.0;
2020-09-24 07:49:22 -05:00
| ^^^^^^^^ help: consider comparing them within some margin of error: `(x - 1.0).abs() < error_margin`
2017-02-07 14:05:30 -06:00
|
2020-09-24 07:49:22 -05:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2017-02-07 14:05:30 -06:00
2020-01-06 00:36:33 -06:00
error: strict comparison of `f32` or `f64`
2024-02-17 06:16:29 -06:00
--> tests/ui/float_cmp.rs:82:5
2017-02-07 14:05:30 -06:00
|
2018-12-27 09:57:55 -06:00
LL | twice(x) != twice(ONE as f64);
2020-09-24 07:49:22 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(twice(x) - twice(ONE as f64)).abs() > error_margin`
2017-02-07 14:05:30 -06:00
|
2020-09-24 07:49:22 -05:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2017-02-07 14:05:30 -06:00
2020-03-17 04:32:20 -05:00
error: strict comparison of `f32` or `f64`
2024-02-17 06:16:29 -06:00
--> tests/ui/float_cmp.rs:104:5
2019-09-19 07:57:43 -05:00
|
2020-03-20 05:42:39 -05:00
LL | NON_ZERO_ARRAY[i] == NON_ZERO_ARRAY[j];
2020-09-24 07:49:22 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(NON_ZERO_ARRAY[i] - NON_ZERO_ARRAY[j]).abs() < error_margin`
2019-09-19 07:57:43 -05:00
|
2020-09-24 07:49:22 -05:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2020-03-20 05:42:39 -05:00
2020-04-06 02:06:50 -05:00
error: strict comparison of `f32` or `f64` arrays
2024-02-17 06:16:29 -06:00
--> tests/ui/float_cmp.rs:111:5
2020-03-20 05:42:39 -05:00
|
LL | a1 == a2;
| ^^^^^^^^
|
2020-09-24 07:49:22 -05:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2019-09-19 07:57:43 -05:00
2020-03-17 04:32:20 -05:00
error: strict comparison of `f32` or `f64`
2024-02-17 06:16:29 -06:00
--> tests/ui/float_cmp.rs:114:5
2019-09-19 07:57:43 -05:00
|
2020-03-20 05:42:39 -05:00
LL | a1[0] == a2[0];
2020-09-24 07:49:22 -05:00
| ^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(a1[0] - a2[0]).abs() < error_margin`
2019-09-19 07:57:43 -05:00
|
2020-09-24 07:49:22 -05:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
2019-09-19 07:57:43 -05:00
2020-03-20 05:42:39 -05:00
error: aborting due to 6 previous errors
2018-01-16 10:06:27 -06:00