| 279 | //----------------------------------------------------------------------------- |
| 280 | |
| 281 | static auto* CallVecNew(std::string_view ctorName, Expr* objectParam, QualType allocatedType, Expr* arraySizeExpr) |
| 282 | { |
| 283 | EnableGlobalInsert(GlobalInserts::FuncCxaVecNew); |
| 284 | |
| 285 | return CallVecNewOrCtor(ctorName, objectParam, allocatedType, arraySizeExpr, "__cxa_vec_new"sv); |
| 286 | } |
| 287 | //----------------------------------------------------------------------------- |
| 288 | |
| 289 | static auto* |
no test coverage detected