---------------------------------------------------------------------
| 1204 | |
| 1205 | // --------------------------------------------------------------------- |
| 1206 | void |
| 1207 | Type::GenerateSimpleTypes(void) |
| 1208 | { |
| 1209 | unsigned int st; |
| 1210 | for (st=eChar; st<MAX_SIMPLE_TYPES; st++) |
| 1211 | { |
| 1212 | AllTypes.push_back(new Type((enum eSimpleType)st)); |
| 1213 | } |
| 1214 | Type::void_type = new Type((enum eSimpleType)eVoid); |
| 1215 | } |
| 1216 | |
| 1217 | // --------------------------------------------------------------------- |
| 1218 | void |
nothing calls this directly
no outgoing calls
no test coverage detected