From 4c191b2b46a67a0dda6e9a867b40f45156af4f9c Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 17 Aug 2026 01:35:00 +0800 Subject: refactor!: rename dispatch_args_trie to dispatch_args --- mingling_core/src/program/exec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mingling_core/src/program/exec.rs') diff --git a/mingling_core/src/program/exec.rs b/mingling_core/src/program/exec.rs index b0a5b16..3ad5ba8 100644 --- a/mingling_core/src/program/exec.rs +++ b/mingling_core/src/program/exec.rs @@ -62,7 +62,7 @@ where let mut current = if cfg!(not(feature = "dispatch_tree")) { dispatch_args_dynamic(program, args)? } else { - C::dispatch_args_trie(args)? + C::dispatch_args(args)? }; // Run hook -- cgit