| 559 | } |
| 560 | |
| 561 | static void AddBoolString_Generic(asIScriptGeneric *gen) |
| 562 | { |
| 563 | bool b = gen->GetArgByte(0) ? true : false; |
| 564 | CScriptString *str = (CScriptString*)gen->GetObject(); |
| 565 | CScriptString *out = AddBoolString(b, *str); |
| 566 | gen->SetReturnAddress(out); |
| 567 | } |
| 568 | |
| 569 | //---------- |
| 570 | // string[] |
nothing calls this directly
no test coverage detected