This commit is contained in:
vms 2020-09-21 13:30:39 +03:00
parent 0bae64ad3c
commit c1e67e22e7
3 changed files with 3 additions and 2 deletions

2
Cargo.lock generated
View File

@ -195,7 +195,7 @@ checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"
[[package]]
name = "wasmer-interface-types-fl"
version = "0.17.7"
version = "0.17.6"
dependencies = [
"log",
"nom",

View File

@ -1,6 +1,6 @@
[package]
name = "wasmer-interface-types-fl"
version = "0.17.7"
version = "0.17.6"
description = "WebAssembly Interface Types library for Wasmer"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]

View File

@ -268,6 +268,7 @@ where
{
let mut result: Vec<u64> = Vec::with_capacity(array_values.len());
// here it's known that all interface values have the same type
for value in array_values {
match value {
InterfaceValue::S8(value) => result.push(value as _),