From 463d4a68e34166fd8582bc3c9929d8435d639e12 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Tue, 29 Oct 2024 18:22:33 +0100 Subject: [PATCH] style: fix clippy warning --- lib/src/compiler/emit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/compiler/emit.rs b/lib/src/compiler/emit.rs index 2e5f03ba..3f92d286 100644 --- a/lib/src/compiler/emit.rs +++ b/lib/src/compiler/emit.rs @@ -373,7 +373,7 @@ fn emit_expr( emit_lookup_object(ctx, instr); } } - emit_func_call(ctx, &func, instr); + emit_func_call(ctx, func, instr); ctx.lookup_list.clear(); } TypeValue::Regexp(_) => {