-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
[Clang][Diagnostics] Consider splitting warning on cv-qualified base classes into a separate group #131935
Comments
I think that putting this diagnostic in its own warning group, still in I also believe there is value to only diagnosing this on EXPLICIT qualifiers (or a separate, additional warning to do so), not ones that get picked up from the template. I think the two of these could reasonably be done together, and should be a fairly minor amount of effort, so I'll mark this as a good beginner bug. |
Hi! This issue may be a good introductory issue for people new to working on LLVM. If you would like to work on this issue, your first steps are:
If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below. |
@llvm/issue-subscribers-good-first-issue Author: None (MagentaTreehouse)
In PR #121419, warnings were added for cv-qualified base classes. I consider it too noisy in some scenarios. Consider this code:
```c++
#include <type_traits>
inline constexpr auto op0{[] { /* do work / }}; // fix: =[
and on and on and on... The It would be nice to split this warning into a separate group, so that it is not enabled by CC @a-tarasyuk @erichkeane |
I’d like to work on this issue - could you assign me @MagentaTreehouse |
We haven't been using the 'assignment' tool in Github lately for these issues, and instead are just counting on comments like that (as otherwise it dissuades anyone from looking into this if you haven't shown progress in a while). If you find yourself needing advice/etc, please let us know! Also, make sure to add me to the review if you get one together, even if it is incomplete it is a good place to start conversation. |
Thanks @erichkeane , i've added a draft pr here so can continue the discussion there |
In PR #121419, warnings were added for cv-qualified base classes. I consider it too noisy in some scenarios. Consider this code:
Warnings:
and on and on and on...
The
const
comes from decltyping fromconstexpr
variables. I would argue that the language rule is doing me a favor here, so that I don't have to add unnecessary verbosity by specifyingstd::remove_cv_t
to each one of them.It would be nice to split this warning into a separate group, so that it is not enabled by
-Wextra
, or that at least I can turn this specific warning off.CC @a-tarasyuk @erichkeane
The text was updated successfully, but these errors were encountered: