| 1242 | } |
| 1243 | |
| 1244 | static void formatUInt_Generic(asIScriptGeneric * gen) |
| 1245 | { |
| 1246 | asQWORD val = gen->GetArgQWord(0); |
| 1247 | string *options = reinterpret_cast<string*>(gen->GetArgAddress(1)); |
| 1248 | asUINT width = gen->GetArgDWord(2); |
| 1249 | new(gen->GetAddressOfReturnLocation()) string(formatUInt(val, *options, width)); |
| 1250 | } |
| 1251 | |
| 1252 | static void formatFloat_Generic(asIScriptGeneric *gen) |
| 1253 | { |
nothing calls this directly
no test coverage detected