2019-12-20 19:57:47 -06:00
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/floating_point_exp.rs:8:13
|
2019-12-20 19:57:47 -06:00
|
|
|
|
|
|
|
|
LL | let _ = x.exp() - 1.0;
|
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
|
|
2020-02-23 23:06:55 -06:00
|
|
|
= note: `-D clippy::imprecise-flops` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::imprecise_flops)]`
|
2019-12-20 19:57:47 -06:00
|
|
|
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/floating_point_exp.rs:9:13
|
2019-12-20 19:57:47 -06: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
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/floating_point_exp.rs:10:13
|
2022-08-31 08:24:45 -05:00
|
|
|
|
|
|
|
|
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
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/floating_point_exp.rs:16:13
|
2019-12-20 19:57:47 -06:00
|
|
|
|
|
|
|
|
LL | let _ = x.exp() - 1.0;
|
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
|
|
|
|
error: (e.pow(x) - 1) can be computed more accurately
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui/floating_point_exp.rs:17:13
|
2019-12-20 19:57:47 -06:00
|
|
|
|
|
|
|
|
LL | let _ = x.exp() - 1.0 + 2.0;
|
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`
|
|
|
|
|
2022-08-31 08:24:45 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2019-12-20 19:57:47 -06:00
|
|
|
|