| 275 | } |
| 276 | |
| 277 | int Capacity() const { |
| 278 | TIXMLASSERT( _allocated >= INITIAL_SIZE ); |
| 279 | return _allocated; |
| 280 | } |
| 281 | |
| 282 | void SwapRemove(int i) { |
| 283 | TIXMLASSERT(i >= 0 && i < _size); |
nothing calls this directly
no outgoing calls
no test coverage detected