| 643 | } |
| 644 | |
| 645 | void CScriptArray::Resize(asUINT numElements) |
| 646 | { |
| 647 | if( !CheckMaxSize(numElements) ) |
| 648 | return; |
| 649 | |
| 650 | Resize((int)numElements - (int)buffer->numElements, (asUINT)-1); |
| 651 | } |
| 652 | |
| 653 | void CScriptArray::RemoveRange(asUINT start, asUINT count) |
| 654 | { |
no test coverage detected