| 3 | namespace Abyss::FileSystem { |
| 4 | |
| 5 | InputStream::InputStream(std::unique_ptr<std::streambuf> streamBuff) : std::istream(streamBuff.get()), _streamBuff(std::move(streamBuff)) {} |
| 6 | |
| 7 | InputStream::InputStream(InputStream &&other) noexcept : std::istream(other._streamBuff.get()), _streamBuff(std::move(other._streamBuff)) {} |
| 8 |
nothing calls this directly
no outgoing calls
no test coverage detected