sets the capacity. capacity can never be reduced less than size()
| 88 | inline size_t capacity() const { return VectorImpl::capacity(); } |
| 89 | //! sets the capacity. capacity can never be reduced less than size() |
| 90 | inline ssize_t setCapacity(size_t size) { return VectorImpl::setCapacity(size); } |
| 91 | |
| 92 | /*! |
| 93 | * set the size of the vector. items are appended with the default |
no outgoing calls
no test coverage detected