[clang] [clang] implement CWG2064: ignore value dependence for decltype (PR #190495)
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 6 06:20:18 PDT 2026
================
@@ -194,7 +194,7 @@ class Dependence {
TypeDependence type() const {
return translate(V, UnexpandedPack, TypeDependence::UnexpandedPack) |
translate(V, Instantiation, TypeDependence::Instantiation) |
- translate(V, Dependent, TypeDependence::Dependent) |
+ translate(V, Type, TypeDependence::Dependent) |
----------------
erichkeane wrote:
Can you explain this part of the patch? This looks odd for obvious reasons.
https://github.com/llvm/llvm-project/pull/190495
More information about the cfe-commits
mailing list