| 341 | //----------------------------------------------------------------------------- |
| 342 | |
| 343 | void ArrayObject::erase( S32 index ) |
| 344 | { |
| 345 | if(index < 0 || index >= mArray.size()) |
| 346 | return; |
| 347 | |
| 348 | mArray.erase( index ); |
| 349 | } |
| 350 | |
| 351 | //----------------------------------------------------------------------------- |
| 352 |
no test coverage detected