Skip to content
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

[c_api] Fix comment I forgot to update in C API. #1971

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions xls/public/c_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,11 @@ struct xls_trace_message {
// Runs the given `jit` function with the given `args` (an array of size `argc`)
// and returns the result in `result_out`.
//
// `trace_messages_out` should be freed by the caller via ...
// `assert_messages_out` should be freed by the caller via ...
// Note:
// * `trace_messages_out` should be freed by the caller via
// `xls_trace_messages_free`.
// * `assert_messages_out` should be freed by the caller via
// `xls_c_strs_free`.
bool xls_function_jit_run(struct xls_function_jit* jit, size_t argc,
const struct xls_value* const* args, char** error_out,
struct xls_trace_message** trace_messages_out,
Expand Down