From 88d0f01948b68f4a4d87e02a5138e94ac0a6eaea Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Mon, 14 Mar 2022 23:38:53 +0100 Subject: feat(ops): custom arity (#13949) Also cleanup & drop ignored wildcard op-args --- core/examples/hello_world.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'core/examples/hello_world.rs') diff --git a/core/examples/hello_world.rs b/core/examples/hello_world.rs index bfca5447c..d5d7af94d 100644 --- a/core/examples/hello_world.rs +++ b/core/examples/hello_world.rs @@ -17,7 +17,6 @@ use deno_core::*; fn op_sum( _state: &mut OpState, nums: Vec, - _: (), ) -> Result { // Sum inputs let sum = nums.iter().fold(0.0, |a, v| a + v); -- cgit v1.2.3