Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta committed Feb 5, 2024
1 parent 73866bf commit ec7f007
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bench/criterion_benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ fn load_program_data(c: &mut Criterion) {
VirtualMachine::new(false),
)
},
|(mut runner, mut vm)| _ = black_box(runner.initialize(black_box(&mut vm), false).unwrap()),
|(mut runner, mut vm)| {
_ = black_box(runner.initialize(black_box(&mut vm), false).unwrap())
},
BatchSize::SmallInput,
)
});
Expand Down

0 comments on commit ec7f007

Please sign in to comment.