| 180 | //----------------------------------------------------------------------------- |
| 181 | |
| 182 | static bool HasCtor(QualType t) |
| 183 | { |
| 184 | if(auto* cxxRecordDecl = t->getAsCXXRecordDecl(); cxxRecordDecl and not cxxRecordDecl->isTrivial()) { |
| 185 | return true; |
| 186 | } |
| 187 | |
| 188 | return false; |
| 189 | } |
| 190 | //----------------------------------------------------------------------------- |
| 191 | |
| 192 | static bool HasDtor(QualType t) |
no outgoing calls
no test coverage detected