| 168 | } |
| 169 | |
| 170 | std::shared_ptr<Buffer> SliceMutableBuffer(std::shared_ptr<Buffer> buffer, |
| 171 | const int64_t offset, const int64_t length) { |
| 172 | return std::make_shared<MutableBuffer>(std::move(buffer), offset, length); |
| 173 | } |
| 174 | |
| 175 | MutableBuffer::MutableBuffer(const std::shared_ptr<Buffer>& parent, const int64_t offset, |
| 176 | const int64_t size) |
no outgoing calls
no test coverage detected