| 149 | } |
| 150 | |
| 151 | void destroy() noexcept { |
| 152 | storage_type::destroy_several(data_, size_); |
| 153 | if (dynamic_capacity_) { |
| 154 | delete[] data_; |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | void move_construct(SmallVectorStorage&& other) noexcept { |
| 159 | size_ = other.size_; |
no outgoing calls
no test coverage detected