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