From 02c32ba9d93443684868894fe879d526a91783af Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Fri, 24 Apr 2026 16:40:32 +0800 Subject: fix: Add explicit type annotation to collect call in Program --- mingling_core/src/program.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mingling_core/src/program.rs') diff --git a/mingling_core/src/program.rs b/mingling_core/src/program.rs index d655c74..a671e9b 100644 --- a/mingling_core/src/program.rs +++ b/mingling_core/src/program.rs @@ -90,7 +90,7 @@ where let wide: Vec = arg.encode_wide().collect(); String::from_utf16_lossy(&wide) }) - .collect() + .collect::>() }); } -- cgit