Related issue: https://github.com/llvm/llvm-project/issues/56246
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Thanks for this! Can you add some more details to the patch description so it's more clear from there why the patch is necessary? Also, can you add a release note for the fix?
I'm pretty sure the changes here are correct, but I want to take another run at the standards wording to be sure.
clang/lib/AST/ExprConstant.cpp | ||
---|---|---|
931 | Add the docs? | |
8740–8742 | ||
clang/test/SemaCXX/cxx2a-consteval.cpp | ||
925 | You should add a new line back to the end of the file. |
clang/lib/AST/ExprConstant.cpp | ||
---|---|---|
8458 | When not in a constant-context, what should we be doing here? Why doesn't that set the variable? | |
8459 | Will this visit end up looking into OTHER things here? I guess I'm concerned about something like: this->get_some_other_type().static_func() and us skipping the this-> for THAT, despite it not being a static call in that context. |
Given this has not made progress in a while, I think we should try to implement https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2280r4.html instead of this approach, as I'm not sure if that's strictly conforming, and a more holistic approach is likely to lead to better results.
What do people think?
P2280R4 was adopted for C++23, so I think we'll need to do the work eventually. It likely makes sense to explore doing that work now, at the very least so we don't make it harder to implement in the future.
Add the docs?