================
@@ -2604,19 +2604,22 @@ bool QualType::isTrivialType(const ASTContext &Context) 
const {
   return false;
 }
 
-bool QualType::isTriviallyCopyableType(const ASTContext &Context) const {
-  if ((*this)->isArrayType())
-    return Context.getBaseElementType(*this).isTriviallyCopyableType(Context);
+static bool isTriviallyCopyableTypeImpl(const QualType &type,
+                                        const ASTContext &Context,
+                                        bool copy_constructible) {
----------------
cor3ntin wrote:

```suggestion
                                        bool IsCopyConstructible) {
```

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

Reply via email to