Strip symbols of inferno binaries to decrease size by 24x (#310) #248
GitHub Actions / clippy
succeeded
Nov 25, 2023 in 0s
clippy
1 warning
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 1 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.75.0-beta.3 (b66b7951b 2023-11-20)
- cargo 1.75.0-beta.3 (1d8b05cdd 2023-11-20)
- clippy 0.1.75 (b66b795 2023-11-20)
Annotations
Check warning on line 620 in src/flamegraph/mod.rs
github-actions / clippy
redundant guard
warning: redundant guard
--> src/flamegraph/mod.rs:620:32
|
620 | Some(delta) if delta == 0 => write!(
| ^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
= note: `#[warn(clippy::redundant_guards)]` on by default
help: try
|
620 - Some(delta) if delta == 0 => write!(
620 + Some(0) => write!(
|
Loading