[clang] [Clang] Fix handling of qualified id-expressions in unevaluated contexts (PR #99807)
via cfe-commits
cfe-commits at lists.llvm.org
Sun Jul 21 05:44:31 PDT 2024
================
@@ -58,7 +58,8 @@ C++ Specific Potentially Breaking Changes
versions of clang. The deprecation warning for the negative spelling can be
disabled with `-Wno-deprecated-no-relaxed-template-template-args`.
-- Clang now rejects pointer to member from parenthesized expression in unevaluated context such as ``decltype(&(foo::bar))``. (#GH40906).
+- Clang no longer tries to form pointer-to-members from qualified and parenthesized unevaluated expressions
+ such``decltype(&(foo::bar))``. (#GH40906).
----------------
cor3ntin wrote:
Thanks for catching that
https://github.com/llvm/llvm-project/pull/99807
More information about the cfe-commits
mailing list