| 705 | } |
| 706 | |
| 707 | void CScriptArray::Resize(asUINT numElements) |
| 708 | { |
| 709 | if( !CheckMaxSize(numElements) ) |
| 710 | return; |
| 711 | |
| 712 | Resize((int)numElements - (int)buffer->numElements, (asUINT)-1); |
| 713 | } |
| 714 | |
| 715 | void CScriptArray::RemoveRange(asUINT start, asUINT count) |
| 716 | { |
no test coverage detected