| 603 | } |
| 604 | |
| 605 | bool Structure::hasNonTrivialCtor(das_set<Structure *> & dep) const { // && |
| 606 | for ( const auto & fd : fields ) { |
| 607 | if ( fd.type && fd.type->hasNonTrivialCtor(dep) ) { |
| 608 | return true; |
| 609 | } |
| 610 | } |
| 611 | return false; |
| 612 | } |
| 613 | |
| 614 | bool Structure::hasNonTrivialDtor(das_set<Structure *> & dep) const { // && |
| 615 | for ( const auto & fd : fields ) { |
no outgoing calls
no test coverage detected