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