aboutsummaryrefslogtreecommitdiff
path: root/mingling_core
diff options
context:
space:
mode:
authorWeicao-CatilGrass <1992414357@qq.com>2026-04-24 16:40:32 +0800
committerWeicao-CatilGrass <1992414357@qq.com>2026-04-24 16:40:32 +0800
commit02c32ba9d93443684868894fe879d526a91783af (patch)
treeb33130309861b4db26faeb3e75117e523242b7e4 /mingling_core
parent53d3713f1ba8c4fcc1476f21c2328dca9de00ca0 (diff)
fix: Add explicit type annotation to collect call in Program
Diffstat (limited to 'mingling_core')
-rw-r--r--mingling_core/src/program.rs2
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<_>>()
});
}