================ idTypeDef::PointerType If type is a pointer, then returns the type it points to ================ */
| 450 | ================ |
| 451 | */ |
| 452 | idTypeDef *idTypeDef::PointerType( void ) const { |
| 453 | if ( type != ev_pointer ) { |
| 454 | throw idCompileError( "idTypeDef::PointerType: tried to get pointer type on non-pointer" ); |
| 455 | } |
| 456 | |
| 457 | return auxType; |
| 458 | } |
| 459 | |
| 460 | /* |
| 461 | ================ |
no test coverage detected