================
@@ -16110,6 +16128,127 @@ bool Sema::CompleteConstructorCall(CXXConstructorDecl
*Constructor,
return Invalid;
}
+bool Sema::IsTypeIdentitySpecialization(QualType Type) const {
+ auto *TypeIdentity = getStdTypeIdentity();
+ if (!TypeIdentity)
+ return false;
+ auto *SpecializedDecl = Type->getSpecializedTemplateDecl();
----------------
AaronBallman wrote:
```suggestion
const auto *TypeIdentity = getStdTypeIdentity();
if (!TypeIdentity)
return false;
const auto *SpecializedDecl = Type->getSpecializedTemplateDecl();
```
https://github.com/llvm/llvm-project/pull/113510
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits