Strip symbols of inferno binaries to decrease size by 24x (#310) #248
test.yml
on: push
ubuntu / stable / minimal-versions
1m 4s
ubuntu / stable / coverage
1m 7s
Matrix: os-check
Matrix: required
Annotations
2 warnings
redundant guard:
src/flamegraph/mod.rs#L620
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!(
|
|
redundant guard:
src/flamegraph/mod.rs#L620
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!(
|
|