Fix warning about deprecated std::array::IntoIter

This commit is contained in:
Nick Fitzgerald
2022-01-06 10:46:09 -08:00
parent 23efaf2196
commit 6e0f732993
2 changed files with 9 additions and 9 deletions

View File

@@ -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(),)*]),
)
}