| 428 | } |
| 429 | |
| 430 | bool Structure::isNoHeapType() const { |
| 431 | for ( const auto & fd : fields ) { |
| 432 | if ( !fd.type->isNoHeapType() ) |
| 433 | return false; |
| 434 | } |
| 435 | return true; |
| 436 | } |
| 437 | |
| 438 | bool Structure::isPod() const { |
| 439 | for ( const auto & fd : fields ) { |
no outgoing calls
no test coverage detected