-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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 missing const
in function signatures
#7600
Comments
If still public: |
From what I remember from the discussions leading to 3.0, a lot of functions operating on ECP objects have to use a non-const pointer due to the lazy loading of group data, which means that Previous discussion: #1485 |
Yes, but that's only for functions that may end up callling |
Btw, I just checked, and We should really get rid of that and instead compute the table for new curves in python or using a dedicated C program, but it's ridiculous to keep code in all builds of the library that's only useful when developing the library, not when using it. Especially when it shows in the API, as some parameters that should morally be So, I'm not adding |
Created #7601 to track preliminary work that's needed before making |
Add missing
const
in function signatures. This issue is only about simple cases where theconst
was just forgotten and no code change is needed in order to add it.See comments below for an incremental list.
The text was updated successfully, but these errors were encountered: