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
In #3875 the warning about the use of "this" in constructors was revised to reduce false positives.
However, now there are cases like C c = this; c.f(); that could be detected at compile-time, but are not warned about.
C c = this; c.f();
A general compile-time pure expression evaluator may help in detecting these cases.
The text was updated successfully, but these errors were encountered:
Somewhat related issue: #11540.
Sorry, something went wrong.
Closing this - we may want to pick it up again after #13724.
No branches or pull requests
In #3875 the warning about the use of "this" in constructors was revised to reduce false positives.
However, now there are cases like
C c = this; c.f();
that could be detected at compile-time, but are not warned about.A general compile-time pure expression evaluator may help in detecting these cases.
The text was updated successfully, but these errors were encountered: