internal
| 936 | |
| 937 | // internal |
| 938 | void CScriptArray::DeleteBuffer(SArrayBuffer *buf) |
| 939 | { |
| 940 | Destruct(buf, 0, buf->numElements); |
| 941 | |
| 942 | // Free the buffer |
| 943 | userFree(buf); |
| 944 | } |
| 945 | |
| 946 | // internal |
| 947 | void CScriptArray::Construct(SArrayBuffer *buf, asUINT start, asUINT end) |
nothing calls this directly
no test coverage detected