rust-clippy/tests/ui/float_cmp_const.stderr

54 lines
2 KiB
Text
Raw Normal View History

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