| 66 | size_t Capacity() const { return buffer_array_.capacity; } |
| 67 | |
| 68 | aimrt_buffer_t* Data() const { return buffer_array_.data; } |
| 69 | |
| 70 | void Reserve(size_t new_cap) { |
| 71 | allocator_ptr_->reserve(allocator_ptr_->impl, &buffer_array_, new_cap); |
no outgoing calls