| 521 | } |
| 522 | |
| 523 | int Structure::getAlignOfFailed(bool & failed) const { |
| 524 | if ( circularGuard ) return 1; |
| 525 | circularGuard = true; |
| 526 | int align = 1; |
| 527 | for ( const auto & fd : fields ) { |
| 528 | align = das::max ( fd.type->getAlignOfFailed(failed), align ); |
| 529 | } |
| 530 | circularGuard = false; |
| 531 | return align; |
| 532 | } |
| 533 | |
| 534 | Structure::FieldDeclarationRef Structure::findFieldRef ( const string & fieldName ) const { |
| 535 | auto pField = findField(fieldName); |
no outgoing calls
no test coverage detected