2020-01-06 06:36:33 +00:00
|
|
|
error: strict comparison of `f32` or `f64` constant
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/float_cmp_const.rs:16:5
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 1f32 == ONE;
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^^^^^^^^^^^ help: consider comparing them within some margin of error: `(1f32 - ONE).abs() < error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::float-cmp-const` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::float_cmp_const)]`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: strict comparison of `f32` or `f64` constant
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/float_cmp_const.rs:19:5
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | TWO == ONE;
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^^^^^^^^^^ help: consider comparing them within some margin of error: `(TWO - ONE).abs() < error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: strict comparison of `f32` or `f64` constant
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/float_cmp_const.rs:22:5
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | TWO != ONE;
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^^^^^^^^^^ help: consider comparing them within some margin of error: `(TWO - ONE).abs() > error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: strict comparison of `f32` or `f64` constant
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/float_cmp_const.rs:25:5
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | ONE + ONE == TWO;
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(ONE + ONE - TWO).abs() < error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: strict comparison of `f32` or `f64` constant
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/float_cmp_const.rs:29:5
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2019-03-12 07:49:26 +00:00
|
|
|
LL | x as f32 == ONE;
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(x as f32 - ONE).abs() < error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: strict comparison of `f32` or `f64` constant
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/float_cmp_const.rs:34:5
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | v == ONE;
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^^^^^^^^ help: consider comparing them within some margin of error: `(v - ONE).abs() < error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
error: strict comparison of `f32` or `f64` constant
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/float_cmp_const.rs:37:5
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | v != ONE;
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^^^^^^^^ help: consider comparing them within some margin of error: `(v - ONE).abs() > error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
|
2017-11-04 08:32:58 +00:00
|
|
|
|
2020-04-06 07:06:50 +00:00
|
|
|
error: strict comparison of `f32` or `f64` constant arrays
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/float_cmp_const.rs:71:5
|
2020-03-20 10:54:04 +00:00
|
|
|
|
|
|
|
|
LL | NON_ZERO_ARRAY == NON_ZERO_ARRAY2;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
|
2020-03-20 10:54:04 +00:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|