-
Notifications
You must be signed in to change notification settings - Fork 80
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
-Wreserved-identifier warnings in public API names #419
Comments
I thought that most were in the private section of the classes, so renaming should be fine. I will see if there are any in the public sections... If you have a list of the public ones, you could add to this issues. |
Well the one quoted ( I guess we could do a renaming, then do something like:
to provide backwards compatibility. |
|
There are a couple |
Starting a PR to address this #420 |
OK, I didn't look very deeply. I just see it under a class IOCGNS_EXPORT DatabaseIO : public Ioss::DatabaseIO
{
public:
[... snip ...]
int64_t node_global_to_local__(int64_t global, bool must_exist) const override; Thanks for starting the PR! |
I think the reference PR solves the issue. Please reopen if still problems. |
VTK almost builds cleanly with clang's
-Wreserved-identifier
. Some of the remaining warnings are from seacas, ex:This warning is admittedly very pedantic, but it's often easy to fix with a simple rename. I was going to do so, but noticed many of the symbols in question are public. So not sure how to proceed...
The text was updated successfully, but these errors were encountered: