| 460 | } |
| 461 | |
| 462 | static void AddStringBool_Generic(asIScriptGeneric *gen) |
| 463 | { |
| 464 | CScriptString *str = (CScriptString*)gen->GetObject(); |
| 465 | bool b = gen->GetArgByte(0) ? true : false; |
| 466 | CScriptString *out = AddStringBool(*str, b); |
| 467 | gen->SetReturnAddress(out); |
| 468 | } |
| 469 | |
| 470 | //---------------- |
| 471 | // value + string |
nothing calls this directly
no test coverage detected