2017-11-04 03:32:58 -05:00
|
|
|
error: strict comparison of f32 or f64 constant
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:27:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 1f32 == ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^^ help: consider comparing them within some error: `(1f32 - ONE).abs() < error`
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::float-cmp-const` implied by `-D warnings`
|
2017-11-04 03:32:58 -05:00
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:27:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 1f32 == ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64 constant
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:28:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | TWO == ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^ help: consider comparing them within some error: `(TWO - ONE).abs() < error`
|
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:28:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | TWO == ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64 constant
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:29:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | TWO != ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^ help: consider comparing them within some error: `(TWO - ONE).abs() < error`
|
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:29:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | TWO != ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64 constant
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:30:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | ONE + ONE == TWO;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE + ONE - TWO).abs() < error`
|
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:30:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | ONE + ONE == TWO;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64 constant
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:31:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 1 as f32 == ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(1 as f32 - ONE).abs() < error`
|
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:31:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | 1 as f32 == ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64 constant
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:34:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | v == ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() < error`
|
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:34:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | v == ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64 constant
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:35:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | v != ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() < error`
|
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/float_cmp_const.rs:35:5
|
2017-11-04 03:32:58 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | v != ONE;
|
2017-11-04 03:32:58 -05:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|