internal
| 891 | |
| 892 | // internal |
| 893 | void CScriptArray::DeleteBuffer(SArrayBuffer* buf) |
| 894 | { |
| 895 | Destruct(buf, 0, buf->numElements); |
| 896 | |
| 897 | // Free the buffer |
| 898 | asFreeMem(buf); |
| 899 | } |
| 900 | |
| 901 | // internal |
| 902 | void CScriptArray::Construct(SArrayBuffer* buf, std::uint32_t start, std::uint32_t end) |
nothing calls this directly
no test coverage detected