| 1422 | } |
| 1423 | |
| 1424 | static void AddString2IntGeneric(asIScriptGeneric * gen) |
| 1425 | { |
| 1426 | string * a = static_cast<string *>(gen->GetObject()); |
| 1427 | asINT64 * b = static_cast<asINT64 *>(gen->GetAddressOfArg(0)); |
| 1428 | std::stringstream sstr; |
| 1429 | sstr << *a << *b; |
| 1430 | std::string ret_val = sstr.str(); |
| 1431 | gen->SetReturnObject(&ret_val); |
| 1432 | } |
| 1433 | |
| 1434 | static void AddString2UIntGeneric(asIScriptGeneric * gen) |
| 1435 | { |
nothing calls this directly
no test coverage detected