We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Linker.func with function with signature fn(u64, u64) -> i32 get this error
Linker.func
fn(u64, u64) -> i32
the trait wasmtime::func::IntoFunc<_, _> is not implemented for fn(u64, u64) -> i32
It is important to use unsigned types in external functions in many cases.
The text was updated successfully, but these errors were encountered:
I think this was added pretty recently in #1808, mind trying that out and seeing if that works for you?
Sorry, something went wrong.
cc @peterhuene
Thus the following users have been cc'd because of the following labels:
To subscribe or unsubscribe from this label, edit the .github/subscribe-to-label.json configuration file.
.github/subscribe-to-label.json
Learn more.
I believe this has since been added so closing.
No branches or pull requests
When using
Linker.func
with function with signaturefn(u64, u64) -> i32
get this errorthe trait wasmtime::func::IntoFunc<_, _> is not implemented for fn(u64, u64) -> i32
It is important to use unsigned types in external functions in many cases.
The text was updated successfully, but these errors were encountered: