From 3e82b1610d29ed2c4f8db6cedbc5eb4e22c1a013 Mon Sep 17 00:00:00 2001 From: David Venhoff Date: Tue, 9 Sep 2025 14:31:13 +0200 Subject: [PATCH] Remove dbg! --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::>() }