diff options
| author | Weicao-CatilGrass <1992414357@qq.com> | 2026-04-24 16:40:32 +0800 |
|---|---|---|
| committer | Weicao-CatilGrass <1992414357@qq.com> | 2026-04-24 16:40:32 +0800 |
| commit | 02c32ba9d93443684868894fe879d526a91783af (patch) | |
| tree | b33130309861b4db26faeb3e75117e523242b7e4 /mingling_core | |
| parent | 53d3713f1ba8c4fcc1476f21c2328dca9de00ca0 (diff) | |
fix: Add explicit type annotation to collect call in Program
Diffstat (limited to 'mingling_core')
| -rw-r--r-- | mingling_core/src/program.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<u16> = arg.encode_wide().collect(); String::from_utf16_lossy(&wide) }) - .collect() + .collect::<Vec<_>>() }); } |
