blob: 0a27e0eac48b305feba8b160bcb6da79aff06963 [file] [log] [blame] [edit]
error: manually checking if a float is infinite
--> tests/ui/manual_float_methods.rs:21:8
|
LL | if x == f32::INFINITY || x == f32::NEG_INFINITY {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the dedicated method instead: `x.is_infinite()`
|
= note: `-D clippy::manual-is-infinite` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::manual_is_infinite)]`
error: manually checking if a float is finite
--> tests/ui/manual_float_methods.rs:23:8
|
LL | if x != f32::INFINITY && x != f32::NEG_INFINITY {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::manual-is-finite` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::manual_is_finite)]`
help: use the dedicated method instead
|
LL - if x != f32::INFINITY && x != f32::NEG_INFINITY {}
LL + if x.is_finite() {}
|
help: this will alter how it handles NaN; if that is a problem, use instead
|
LL - if x != f32::INFINITY && x != f32::NEG_INFINITY {}
LL + if x.is_finite() || x.is_nan() {}
|
help: or, for conciseness
|
LL - if x != f32::INFINITY && x != f32::NEG_INFINITY {}
LL + if !x.is_infinite() {}
|
error: manually checking if a float is infinite
--> tests/ui/manual_float_methods.rs:26:8
|
LL | if x == f64::INFINITY || x == f64::NEG_INFINITY {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the dedicated method instead: `x.is_infinite()`
error: manually checking if a float is finite
--> tests/ui/manual_float_methods.rs:28:8
|
LL | if x != f64::INFINITY && x != f64::NEG_INFINITY {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: use the dedicated method instead
|
LL - if x != f64::INFINITY && x != f64::NEG_INFINITY {}
LL + if x.is_finite() {}
|
help: this will alter how it handles NaN; if that is a problem, use instead
|
LL - if x != f64::INFINITY && x != f64::NEG_INFINITY {}
LL + if x.is_finite() || x.is_nan() {}
|
help: or, for conciseness
|
LL - if x != f64::INFINITY && x != f64::NEG_INFINITY {}
LL + if !x.is_infinite() {}
|
error: manually checking if a float is infinite
--> tests/ui/manual_float_methods.rs:43:12
|
LL | if x == f64::INFINITY || x == f64::NEG_INFINITY {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the dedicated method instead: `x.is_infinite()`
error: aborting due to 5 previous errors