about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/floating_point_exp.stderr
blob: 7736a8e7ac3661df1045a03fea02d6e610d99ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
error: (e.pow(x) - 1) can be computed more accurately
  --> tests/ui/floating_point_exp.rs:8:13
   |
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)]`

error: (e.pow(x) - 1) can be computed more accurately
  --> tests/ui/floating_point_exp.rs:10: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
  --> tests/ui/floating_point_exp.rs:12: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:19:13
   |
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:21:13
   |
LL |     let _ = x.exp() - 1.0 + 2.0;
   |             ^^^^^^^^^^^^^ help: consider using: `x.exp_m1()`

error: aborting due to 5 previous errors