| 472 | }; |
| 473 | |
| 474 | BufferedInputStream::BufferedInputStream(std::shared_ptr<InputStream> raw, |
| 475 | MemoryPool* pool, |
| 476 | int64_t raw_total_bytes_bound) { |
| 477 | impl_ = std::make_unique<Impl>(std::move(raw), pool, raw_total_bytes_bound); |
| 478 | } |
| 479 | |
| 480 | BufferedInputStream::~BufferedInputStream() { internal::CloseFromDestructor(this); } |
| 481 |
no outgoing calls