============ idProgram::AllocType ============ */
| 1127 | ============ |
| 1128 | */ |
| 1129 | idTypeDef *idProgram::AllocType( idTypeDef &type ) { |
| 1130 | idTypeDef *newtype; |
| 1131 | |
| 1132 | newtype = new idTypeDef( type ); |
| 1133 | types.Append( newtype ); |
| 1134 | |
| 1135 | return newtype; |
| 1136 | } |
| 1137 | |
| 1138 | /* |
| 1139 | ============ |
no test coverage detected