================ @@ -3482,15 +3486,40 @@ bool FunctionDecl::isDestroyingOperatorDelete() const { // Within a class C, a single object deallocation function with signature // (T, std::destroying_delete_t, <more params>) // is a destroying operator delete. - if (!isa<CXXMethodDecl>(this) || getOverloadedOperator() != OO_Delete || - getNumParams() < 2) + if (!isa<CXXMethodDecl>(this) || getOverloadedOperator() != OO_Delete) + return false; + ---------------- cor3ntin wrote:
We should probably assert this is not an explicit object member function (new/delete are treated as implicitly static) 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