| 126 | constexpr const storage_type* const_storage_ptr() const { return data_; } |
| 127 | |
| 128 | void bump_size(size_t addend) { |
| 129 | const size_t new_size = size_ + addend; |
| 130 | ensure_capacity(new_size); |
| 131 | size_ = new_size; |
| 132 | } |
| 133 | |
| 134 | void ensure_capacity(size_t min_capacity) { |
| 135 | if (dynamic_capacity_) { |
no outgoing calls
no test coverage detected