| 72 | } |
| 73 | |
| 74 | static void AssignStringGeneric(asIScriptGeneric *gen) { |
| 75 | string * tmp = static_cast<string *>(gen->GetArgObject(0)); |
| 76 | string * self = static_cast<string *>(gen->GetObject()); |
| 77 | *self = *tmp; |
| 78 | gen->SetReturnAddress(self); |
| 79 | } |
| 80 | |
| 81 | bool StringEquals(const std::string& lhs, const std::string& rhs) |
| 82 | { |
nothing calls this directly
no test coverage detected