| 310 | } |
| 311 | |
| 312 | void CScriptWeakRef_Equals2_Generic(asIScriptGeneric *gen) |
| 313 | { |
| 314 | void *other = gen->GetArgAddress(0); |
| 315 | CScriptWeakRef *self = reinterpret_cast<CScriptWeakRef*>(gen->GetObject()); |
| 316 | |
| 317 | gen->SetReturnByte(self->Equals(other)); |
| 318 | } |
| 319 | |
| 320 | static void ScriptWeakRefTemplateCallback_Generic(asIScriptGeneric *gen) |
| 321 | { |
nothing calls this directly
no test coverage detected