Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta committed Mar 23, 2023
1 parent 88852f2 commit dd5fb11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/vm_core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ impl VirtualMachine {
let builtin = match self
.builtin_runners
.iter()
.find(|b| &b.name() == &OUTPUT_BUILTIN_NAME)
.find(|b| b.name() == OUTPUT_BUILTIN_NAME)
{
Some(x) => x,
_ => return Ok(()),
Expand Down

1 comment on commit dd5fb11

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.30.

Benchmark suite Current: dd5fb11 Previous: 77fe09e Ratio
cairo_run(cairo_programs/benchmarks/fibonacci_1000_multirun.json) 105887279 ns/iter (± 6478897) 78887066 ns/iter (± 1882749) 1.34

This comment was automatically generated by workflow using github-action-benchmark.

CC: @unbalancedparentheses

Please sign in to comment.