| 1275 | } |
| 1276 | |
| 1277 | static void parseFloat_Generic(asIScriptGeneric *gen) |
| 1278 | { |
| 1279 | string *str = reinterpret_cast<string*>(gen->GetArgAddress(0)); |
| 1280 | asUINT *byteCount = reinterpret_cast<asUINT*>(gen->GetArgAddress(1)); |
| 1281 | gen->SetReturnDouble(parseFloat(*str,byteCount)); |
| 1282 | } |
| 1283 | |
| 1284 | static void StringCharAtGeneric(asIScriptGeneric * gen) |
| 1285 | { |
nothing calls this directly
no test coverage detected