You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's currently a discrepancy between C++ and C APIs, where C++ instantiate takes vectors of imported tables and memory and C fizzy_instantiate takes single memory and single table.
Wasm 1.0 allows only single memory and table, so it's fine to pass only single (optional) one. Probably C++ API should be changed for consistency with C.
The text was updated successfully, but these errors were encountered:
There's currently a discrepancy between C++ and C APIs, where C++
instantiate
takes vectors of imported tables and memory and Cfizzy_instantiate
takes single memory and single table.Wasm 1.0 allows only single memory and table, so it's fine to pass only single (optional) one. Probably C++ API should be changed for consistency with C.
The text was updated successfully, but these errors were encountered: