mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
f5596826fa
Since x.log(y) is actually implemented as x.ln() / y.ln()
28 lines
930 B
Text
28 lines
930 B
Text
error: log base can be expressed more clearly
|
|
--> $DIR/floating_point_logbase.rs:7:13
|
|
|
|
|
LL | let _ = x.ln() / y.ln();
|
|
| ^^^^^^^^^^^^^^^ help: consider using: `x.log(y)`
|
|
|
|
|
= note: `-D clippy::suboptimal-flops` implied by `-D warnings`
|
|
|
|
error: log base can be expressed more clearly
|
|
--> $DIR/floating_point_logbase.rs:8:13
|
|
|
|
|
LL | let _ = x.log2() / y.log2();
|
|
| ^^^^^^^^^^^^^^^^^^^ help: consider using: `x.log(y)`
|
|
|
|
error: log base can be expressed more clearly
|
|
--> $DIR/floating_point_logbase.rs:9:13
|
|
|
|
|
LL | let _ = x.log10() / y.log10();
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using: `x.log(y)`
|
|
|
|
error: log base can be expressed more clearly
|
|
--> $DIR/floating_point_logbase.rs:10:13
|
|
|
|
|
LL | let _ = x.log(5f32) / y.log(5f32);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `x.log(y)`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|