| 676 | } |
| 677 | |
| 678 | bool Structure::isTemp(das_set<Structure *> & dep) const { // || |
| 679 | for ( const auto & fd : fields ) { |
| 680 | if ( fd.type && fd.type->isTemp(true, true, dep) ) { |
| 681 | return true; |
| 682 | } |
| 683 | } |
| 684 | return false; |
| 685 | } |
| 686 | |
| 687 | bool Structure::isShareable(das_set<Structure *> & dep) const { // && |
| 688 | for ( const auto & fd : fields ) { |
no outgoing calls
no test coverage detected