summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/floating_point_abs.stderr
blob: 74a71f2ca7c574f8fc5750115aef190bc373e097 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
error: manual implementation of `abs` method
  --> $DIR/floating_point_abs.rs:10:5
   |
LL | /     if num >= 0.0 {
LL | |         num
LL | |     } else {
LL | |         -num
LL | |     }
   | |_____^ help: try: `num.abs()`
   |
   = note: `-D clippy::suboptimal-flops` implied by `-D warnings`

error: manual implementation of `abs` method
  --> $DIR/floating_point_abs.rs:18:5
   |
LL | /     if 0.0 < num {
LL | |         num
LL | |     } else {
LL | |         -num
LL | |     }
   | |_____^ help: try: `num.abs()`

error: manual implementation of `abs` method
  --> $DIR/floating_point_abs.rs:26:5
   |
LL | /     if a.a > 0.0 {
LL | |         a.a
LL | |     } else {
LL | |         -a.a
LL | |     }
   | |_____^ help: try: `a.a.abs()`

error: manual implementation of `abs` method
  --> $DIR/floating_point_abs.rs:34:5
   |
LL | /     if 0.0 >= num {
LL | |         -num
LL | |     } else {
LL | |         num
LL | |     }
   | |_____^ help: try: `num.abs()`

error: manual implementation of `abs` method
  --> $DIR/floating_point_abs.rs:42:5
   |
LL | /     if a.a < 0.0 {
LL | |         -a.a
LL | |     } else {
LL | |         a.a
LL | |     }
   | |_____^ help: try: `a.a.abs()`

error: manual implementation of negation of `abs` method
  --> $DIR/floating_point_abs.rs:50:5
   |
LL | /     if num < 0.0 {
LL | |         num
LL | |     } else {
LL | |         -num
LL | |     }
   | |_____^ help: try: `-num.abs()`

error: manual implementation of negation of `abs` method
  --> $DIR/floating_point_abs.rs:58:5
   |
LL | /     if 0.0 >= num {
LL | |         num
LL | |     } else {
LL | |         -num
LL | |     }
   | |_____^ help: try: `-num.abs()`

error: manual implementation of negation of `abs` method
  --> $DIR/floating_point_abs.rs:67:12
   |
LL |         a: if a.a >= 0.0 { -a.a } else { a.a },
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `-a.a.abs()`

error: aborting due to 8 previous errors