Remove dbg!

This commit is contained in:
David Venhoff 2025-09-09 14:31:13 +02:00
parent f59947aea8
commit 3e82b1610d

View File

@ -64,7 +64,7 @@ fn benchmark_loop<B: Benchmark>(benchmark: &mut B) -> Vec<B::BenchmarkResult> {
let n = 50;
println!("Perform {n} iterations...");
(0..n)
.map(|_| dbg!(std::hint::black_box(benchmark.execute_once())))
.map(|_| std::hint::black_box(benchmark.execute_once()))
.collect::<Vec<_>>()
}