diff --git a/database/benchmark/benches/env.rs b/database/benchmark/benches/env.rs index 3a0c788..d7a7273 100644 --- a/database/benchmark/benches/env.rs +++ b/database/benchmark/benches/env.rs @@ -50,7 +50,7 @@ fn env_inner(c: &mut Criterion) { c.bench_function(function_name!(), |b| { b.iter(|| { - black_box(env.env_inner()); + let _ = black_box(env.env_inner()); }); }); }