Returns the capacity of this buffer.
| 261 | |
| 262 | // Returns the capacity of this buffer. |
| 263 | std::size_t capacity() const { return capacity_; } |
| 264 | |
| 265 | // Resizes the buffer. If T is a POD type new elements are not initialized. |
| 266 | void resize(std::size_t new_size) { |
no outgoing calls
no test coverage detected