| 468 | } |
| 469 | |
| 470 | MutableBuffer(uint8_t* data, const int64_t size, std::shared_ptr<MemoryManager> mm) |
| 471 | : Buffer(data, size, std::move(mm)) { |
| 472 | is_mutable_ = true; |
| 473 | } |
| 474 | |
| 475 | MutableBuffer(const std::shared_ptr<Buffer>& parent, const int64_t offset, |
| 476 | const int64_t size); |