Prepare for latest clippy (nightly 09-10-2022) (#12466)

This commit is contained in:
Bastian Köcher
2022-10-18 12:07:02 +02:00
committed by GitHub
parent 8671fb7615
commit 738dc8460e
15 changed files with 28 additions and 32 deletions
@@ -268,9 +268,8 @@ impl PalletCmd {
for s in 0..self.steps {
// This is the value we will be testing for component `name`
let component_value = ((lowest as f32 + step_size * s as f32) as u32)
.min(highest)
.max(lowest);
let component_value =
((lowest as f32 + step_size * s as f32) as u32).clamp(lowest, highest);
// Select the max value for all the other components.
let c: Vec<(BenchmarkParameter, u32)> = components