================
@@ -3357,6 +3357,10 @@ bool FunctionDecl::isReservedGlobalPlacementOperator() 
const {
     return false;
 
   const auto *proto = getType()->castAs<FunctionProtoType>();
+  if (proto->getNumParams() < 2)
+    return false;
+  if (proto->getParamType(0)->isTypeIdentitySpecialization())
+    return false;
----------------
cor3ntin wrote:

We probably don't need to compare getNumParams() twice (line below)

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

Reply via email to