| 303 | } |
| 304 | |
| 305 | void CScriptWeakRef_Equals_Generic(asIScriptGeneric *gen) |
| 306 | { |
| 307 | CScriptWeakRef *other = reinterpret_cast<CScriptWeakRef*>(gen->GetArgAddress(0)); |
| 308 | CScriptWeakRef *self = reinterpret_cast<CScriptWeakRef*>(gen->GetObject()); |
| 309 | gen->SetReturnByte(*self == *other); |
| 310 | } |
| 311 | |
| 312 | void CScriptWeakRef_Equals2_Generic(asIScriptGeneric *gen) |
| 313 | { |
nothing calls this directly
no test coverage detected