mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
f2043989ca
Signed-off-by: TennyZhuang <zty0826@gmail.com>
34 lines
1.1 KiB
Text
34 lines
1.1 KiB
Text
error: (e.pow(x) - 1) can be computed more accurately
|
|
--> $DIR/floating_point_exp.rs:7:13
|
|
|
|
|
LL | let _ = x.exp() - 1.0;
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
|
= note: `-D clippy::imprecise-flops` implied by `-D warnings`
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
|
--> $DIR/floating_point_exp.rs:8:13
|
|
|
|
|
LL | let _ = x.exp() - 1.0 + 2.0;
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
|
--> $DIR/floating_point_exp.rs:9:13
|
|
|
|
|
LL | let _ = (x as f32).exp() - 1.0 + 2.0;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `(x as f32).exp_m1()`
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
|
--> $DIR/floating_point_exp.rs:15:13
|
|
|
|
|
LL | let _ = x.exp() - 1.0;
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
|
--> $DIR/floating_point_exp.rs:16:13
|
|
|
|
|
LL | let _ = x.exp() - 1.0 + 2.0;
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
error: aborting due to 5 previous errors
|
|
|