-
Notifications
You must be signed in to change notification settings - Fork 824
New issue
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
Add wasm_config_delete
to the Wasm C API
#2054
Conversation
/// # .success(); | ||
/// # } | ||
/// ``` | ||
/// cbindgen:ignore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why ignoring it in the C API?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If ignored, it won't be present in the .h
files, and I don't see how the doctest can work :-).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is part of wasm.h , I made it ignored because wasm_config_new
is also ignored and this is functionally the same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh true!
bors r+ |
Fixes 1 missing import reported in #2052
This function is relatively new to the Wasm C API and its implementation is trivial