From decd1f277d32616e0ad5a0d1d482b2818bfe50b0 Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Fri, 19 Apr 2024 20:59:29 -0400 Subject: [PATCH] fix clippy --- database/benchmark/benches/env.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); }); }); }