2017-02-07 14:05:30 -06:00
|
|
|
error: strict comparison of f32 or f64
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/float_cmp.rs:69:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
69 | ONE as f64 != 2.0;
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE as f64 - 2.0).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::float-cmp` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/float_cmp.rs:69:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
69 | ONE as f64 != 2.0;
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/float_cmp.rs:74:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
74 | x == 1.0;
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^ help: consider comparing them within some error: `(x - 1.0).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/float_cmp.rs:74:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
74 | x == 1.0;
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: strict comparison of f32 or f64
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/float_cmp.rs:77:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
77 | twice(x) != twice(ONE as f64);
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(twice(x) - twice(ONE as f64)).abs() < error`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/float_cmp.rs:77:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
77 | twice(x) != twice(ONE as f64);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-03-13 05:38:11 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|