diff options
Diffstat (limited to 'src/buildtool/storage/file_chunker.cpp')
-rw-r--r-- | src/buildtool/storage/file_chunker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/storage/file_chunker.cpp b/src/buildtool/storage/file_chunker.cpp index b94f487a..08f0dc11 100644 --- a/src/buildtool/storage/file_chunker.cpp +++ b/src/buildtool/storage/file_chunker.cpp @@ -45,7 +45,7 @@ auto FileChunker::IsOpen() const noexcept -> bool { } auto FileChunker::Finished() const noexcept -> bool { - return stream_.eof() && pos_ == size_; + return stream_.eof() and pos_ == size_; } auto FileChunker::NextChunk() noexcept -> std::optional<std::string> { |