| 42 | static constexpr int64_t kBufferMinimumSize = 256; |
| 43 | |
| 44 | BufferOutputStream::BufferOutputStream() |
| 45 | : is_open_(false), capacity_(0), position_(0), mutable_data_(nullptr) {} |
| 46 | |
| 47 | BufferOutputStream::BufferOutputStream(const std::shared_ptr<ResizableBuffer>& buffer) |
| 48 | : buffer_(buffer), |