| 335 | //----------------------------------------------------------------------------- |
| 336 | |
| 337 | void ArrayObject::erase( S32 index ) |
| 338 | { |
| 339 | if(index < 0 || index >= mArray.size()) |
| 340 | return; |
| 341 | |
| 342 | mArray.erase( index ); |
| 343 | } |
| 344 | |
| 345 | //----------------------------------------------------------------------------- |
| 346 |
no test coverage detected