rust-clippy/tests/ui/floating_point_exp.stderr

29 lines
910 B
Text
Raw Normal View History

2019-12-21 01:57:47 +00:00
error: (e.pow(x) - 1) can be computed more accurately
2020-02-23 04:32:13 +00:00
--> $DIR/floating_point_exp.rs:6:13
2019-12-21 01:57:47 +00:00
|
LL | let _ = x.exp() - 1.0;
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
= note: `-D clippy::imprecise-flops` implied by `-D warnings`
2019-12-21 01:57:47 +00:00
error: (e.pow(x) - 1) can be computed more accurately
2020-02-23 04:32:13 +00:00
--> $DIR/floating_point_exp.rs:7:13
2019-12-21 01:57:47 +00:00
|
LL | let _ = x.exp() - 1.0 + 2.0;
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
error: (e.pow(x) - 1) can be computed more accurately
2020-02-23 04:32:13 +00:00
--> $DIR/floating_point_exp.rs:13:13
2019-12-21 01:57:47 +00:00
|
LL | let _ = x.exp() - 1.0;
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
error: (e.pow(x) - 1) can be computed more accurately
2020-02-23 04:32:13 +00:00
--> $DIR/floating_point_exp.rs:14:13
2019-12-21 01:57:47 +00:00
|
LL | let _ = x.exp() - 1.0 + 2.0;
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
error: aborting due to 4 previous errors