================ idTypeDef::GetFunction ================ */
| 534 | ================ |
| 535 | */ |
| 536 | const function_t *idTypeDef::GetFunction( int funcNumber ) const { |
| 537 | assert( funcNumber >= 0 ); |
| 538 | assert( funcNumber < functions.Num() ); |
| 539 | return functions[ funcNumber ]; |
| 540 | } |
| 541 | |
| 542 | /* |
| 543 | ================ |
nothing calls this directly
no test coverage detected