2020-03-03 23:52:53 +00:00
|
|
|
error: manual implementation of `abs` method
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/floating_point_abs.rs:16:5
|
2020-02-28 20:40:13 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if num >= 0.0 { num } else { -num }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `num.abs()`
|
2020-02-28 20:40:13 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::suboptimal-flops` implied by `-D warnings`
|
|
|
|
|
2020-03-03 23:52:53 +00:00
|
|
|
error: manual implementation of `abs` method
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/floating_point_abs.rs:20:5
|
2020-02-29 21:46:59 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if 0.0 < num { num } else { -num }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `num.abs()`
|
2020-02-29 21:46:59 +00:00
|
|
|
|
2020-03-03 23:52:53 +00:00
|
|
|
error: manual implementation of `abs` method
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/floating_point_abs.rs:24:5
|
2020-02-29 21:46:59 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if a.a > 0.0 { a.a } else { -a.a }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `a.a.abs()`
|
2020-02-29 21:46:59 +00:00
|
|
|
|
2020-03-03 23:52:53 +00:00
|
|
|
error: manual implementation of `abs` method
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/floating_point_abs.rs:28:5
|
2020-02-29 21:46:59 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if 0.0 >= num { -num } else { num }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `num.abs()`
|
2020-02-29 21:46:59 +00:00
|
|
|
|
2020-03-03 23:52:53 +00:00
|
|
|
error: manual implementation of `abs` method
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/floating_point_abs.rs:32:5
|
2020-02-29 21:46:59 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if a.a < 0.0 { -a.a } else { a.a }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `a.a.abs()`
|
2020-02-29 21:46:59 +00:00
|
|
|
|
2020-03-03 23:52:53 +00:00
|
|
|
error: manual implementation of negation of `abs` method
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/floating_point_abs.rs:36:5
|
2020-02-29 21:46:59 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if num < 0.0 { num } else { -num }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `-num.abs()`
|
2020-02-29 21:46:59 +00:00
|
|
|
|
2020-03-03 23:52:53 +00:00
|
|
|
error: manual implementation of negation of `abs` method
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/floating_point_abs.rs:40:5
|
2020-02-29 21:46:59 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
LL | if 0.0 >= num { num } else { -num }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `-num.abs()`
|
2020-02-29 21:46:59 +00:00
|
|
|
|
2020-03-03 23:52:53 +00:00
|
|
|
error: manual implementation of negation of `abs` method
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/floating_point_abs.rs:45:12
|
2020-02-29 21:46:59 +00:00
|
|
|
|
|
2020-03-01 03:11:38 +00:00
|
|
|
LL | a: if a.a >= 0.0 { -a.a } else { a.a },
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `-a.a.abs()`
|
2020-02-29 21:46:59 +00:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2020-02-28 20:40:13 +00:00
|
|
|
|