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
RzBuffer
Is your feature request related to a problem? Please describe.
The RzBuffer API doesn't pass RzBuffer pointers as const. Even if if it shouldn't (e.g. for rz_buf_size).
const
rz_buf_size
This is a problem. Because it prevents users of the API to also pass the pointers without const or do casts before using the API.
Both is not nice.
Describe the solution you'd like
Refactor the API to use const where possible.
Describe alternatives you've considered
None. I can't come up with a good reason to not do it.
Additional context
None
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
The
RzBuffer
API doesn't passRzBuffer
pointers asconst
. Even if if it shouldn't (e.g. forrz_buf_size
).This is a problem. Because it prevents users of the API to also pass the pointers without
const
or do casts before using the API.Both is not nice.
Describe the solution you'd like
Refactor the API to use
const
where possible.Describe alternatives you've considered
None. I can't come up with a good reason to not do it.
Additional context
None
The text was updated successfully, but these errors were encountered: