diff --git a/src/main.rs b/src/main.rs index 03a29ae..a9502ce 100644 --- a/src/main.rs +++ b/src/main.rs @@ -64,7 +64,7 @@ fn benchmark_loop(benchmark: &mut B) -> Vec { 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::>() }