| 190 | //----------------------------------------------------------------------------- |
| 191 | |
| 192 | static bool HasDtor(QualType t) |
| 193 | { |
| 194 | if(auto* cxxRecordDecl = t->getAsCXXRecordDecl(); cxxRecordDecl and not cxxRecordDecl->hasTrivialDestructor()) { |
| 195 | return true; |
| 196 | } |
| 197 | |
| 198 | return false; |
| 199 | } |
| 200 | //----------------------------------------------------------------------------- |
| 201 | |
| 202 | static auto* CallVecDeleteOrDtor(Expr* objectParam, QualType allocatedType, std::string_view name, uint64_t size) |
no outgoing calls
no test coverage detected