rust-clippy/tests/ui/floating_point_exp.stderr

36 lines
1.2 KiB
Text
Raw Normal View History

2019-12-21 01:57:47 +00:00
error: (e.pow(x) - 1) can be computed more accurately
--> tests/ui/floating_point_exp.rs:8: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`
= help: to override `-D warnings` add `#[allow(clippy::imprecise_flops)]`
2019-12-21 01:57:47 +00:00
error: (e.pow(x) - 1) can be computed more accurately
--> tests/ui/floating_point_exp.rs:9: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
--> tests/ui/floating_point_exp.rs:10: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
--> tests/ui/floating_point_exp.rs:16: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
--> tests/ui/floating_point_exp.rs:17: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 5 previous errors
2019-12-21 01:57:47 +00:00