| 2154 | } |
| 2155 | |
| 2156 | static void ScriptArrayIsEmpty_Generic(asIScriptGeneric *gen) |
| 2157 | { |
| 2158 | CScriptArray *self = (CScriptArray*)gen->GetObject(); |
| 2159 | *reinterpret_cast<bool*>(gen->GetAddressOfReturnLocation()) = self->IsEmpty(); |
| 2160 | } |
| 2161 | |
| 2162 | static void ScriptArraySortAsc2_Generic(asIScriptGeneric *gen) |
| 2163 | { |
nothing calls this directly
no test coverage detected