cor3ntin wrote:

`CheckConstexprFunctionDefinition` will return false for a destructor if 
`defaultedDestructorIsConstexpr` returns false (unless we want to emit a 
diagnostic)`

as @groundswellaudio pointed out in 
https://github.com/llvm/llvm-project/pull/78195, this is because 
https://github.com/llvm/llvm-project/blob/99cae9a44fca4cfbd6ee82f196051cbdf6571fa1/clang/lib/AST/DeclCXX.cpp#L551

will set `DefaultedDestructorIsConstexpr` regardless of language mode, which it 
should not.
(and `CheckConstexprFunctionDefinition` should not look at 
`defaultedDestructorIsConstexpr`in c++23 mode because of 
that change 
https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2448r2.html#pnum_38

We should also inspect uses and setting of 
`DefaultedDefaultConstructorIsConstexpr`

https://github.com/llvm/llvm-project/pull/77753
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to