| 261 | } |
| 262 | |
| 263 | int Capacity() const { |
| 264 | TIXMLASSERT( _allocated >= INITIAL_SIZE ); |
| 265 | return _allocated; |
| 266 | } |
| 267 | |
| 268 | void SwapRemove(int i) { |
| 269 | TIXMLASSERT(i >= 0 && i < _size); |
nothing calls this directly
no outgoing calls
no test coverage detected