Fix warning about deprecated std::array::IntoIter
This commit is contained in:
@@ -1459,7 +1459,7 @@ macro_rules! impl_wasm_host_results {
|
||||
fn func_type(params: impl Iterator<Item = ValType>) -> FuncType {
|
||||
FuncType::new(
|
||||
params,
|
||||
std::array::IntoIter::new([$($t::valtype(),)*]),
|
||||
IntoIterator::into_iter([$($t::valtype(),)*]),
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user