| 287 | //----------------------------------------------------------------------------- |
| 288 | |
| 289 | static auto* |
| 290 | CallVecCtor(std::string_view ctorName, const VarDecl* objectParam, QualType allocatedType, Expr* arraySizeExpr) |
| 291 | { |
| 292 | EnableGlobalInsert(GlobalInserts::FuncCxaVecCtor); |
| 293 | |
| 294 | return CallVecNewOrCtor(ctorName, mkDeclRefExpr(objectParam), allocatedType, arraySizeExpr, "__cxa_vec_ctor"sv); |
| 295 | } |
| 296 | //----------------------------------------------------------------------------- |
| 297 | |
| 298 | void CfrontCodeGenerator::InsertArg(const CXXNewExpr* cstmt) |
no test coverage detected