mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 19:53:46 +00:00
66 lines
2.1 KiB
Plaintext
66 lines
2.1 KiB
Plaintext
error: strict comparison of `f32` or `f64`
|
|
--> $DIR/float_cmp.rs:59:5
|
|
|
|
|
LL | ONE as f64 != 2.0;
|
|
| ^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE as f64 - 2.0).abs() > error`
|
|
|
|
|
= note: `-D clippy::float-cmp` implied by `-D warnings`
|
|
note: `f32::EPSILON` and `f64::EPSILON` are available.
|
|
--> $DIR/float_cmp.rs:59:5
|
|
|
|
|
LL | ONE as f64 != 2.0;
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: strict comparison of `f32` or `f64`
|
|
--> $DIR/float_cmp.rs:64:5
|
|
|
|
|
LL | x == 1.0;
|
|
| ^^^^^^^^ help: consider comparing them within some error: `(x - 1.0).abs() < error`
|
|
|
|
|
note: `f32::EPSILON` and `f64::EPSILON` are available.
|
|
--> $DIR/float_cmp.rs:64:5
|
|
|
|
|
LL | x == 1.0;
|
|
| ^^^^^^^^
|
|
|
|
error: strict comparison of `f32` or `f64`
|
|
--> $DIR/float_cmp.rs:67:5
|
|
|
|
|
LL | twice(x) != twice(ONE as f64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(twice(x) - twice(ONE as f64)).abs() > error`
|
|
|
|
|
note: `f32::EPSILON` and `f64::EPSILON` are available.
|
|
--> $DIR/float_cmp.rs:67:5
|
|
|
|
|
LL | twice(x) != twice(ONE as f64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: strict comparison of f32 or f64
|
|
--> $DIR/float_cmp.rs:83:5
|
|
|
|
|
LL | assert_eq!(a1[0], a2[0]);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
--> $DIR/float_cmp.rs:83:5
|
|
|
|
|
LL | assert_eq!(a1[0], a2[0]);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
error: strict comparison of f32 or f64
|
|
--> $DIR/float_cmp.rs:85:5
|
|
|
|
|
LL | assert_eq!(&a1[0], &a2[0]);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: std::f32::EPSILON and std::f64::EPSILON are available.
|
|
--> $DIR/float_cmp.rs:85:5
|
|
|
|
|
LL | assert_eq!(&a1[0], &a2[0]);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
error: aborting due to 5 previous errors
|
|
|