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

capi: Add missing void #942

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions regex-capi/include/rure.h
Expand Up @@ -408,7 +408,7 @@ size_t rure_captures_len(rure_captures *captures);
* safe to call rure_compile from multiple threads simultaneously using the
* same options pointer.
*/
rure_options *rure_options_new();
rure_options *rure_options_new(void);

/*
* rure_options_free frees the given options.
Expand Down Expand Up @@ -536,7 +536,7 @@ size_t rure_set_len(rure_set *re);
* It is not safe to use errors from multiple threads simultaneously. An error
* value may be reused on subsequent calls to rure_compile.
*/
rure_error *rure_error_new();
rure_error *rure_error_new(void);

/*
* rure_error_free frees the error given.
Expand Down