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