| 1472 | } |
| 1473 | |
| 1474 | static void AddInt2StringGeneric(asIScriptGeneric * gen) |
| 1475 | { |
| 1476 | asINT64* a = static_cast<asINT64 *>(gen->GetAddressOfArg(0)); |
| 1477 | string * b = static_cast<string *>(gen->GetObject()); |
| 1478 | std::stringstream sstr; |
| 1479 | sstr << *a << *b; |
| 1480 | std::string ret_val = sstr.str(); |
| 1481 | gen->SetReturnObject(&ret_val); |
| 1482 | } |
| 1483 | |
| 1484 | static void AddUInt2StringGeneric(asIScriptGeneric * gen) |
| 1485 | { |
nothing calls this directly
no test coverage detected