From 277be6dd08633dbebfda93afdfc6b5cb57e053e0 Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Mon, 8 Apr 2024 13:18:22 +0200 Subject: Use properly included standard library types by default --- src/buildtool/storage/file_chunker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/buildtool/storage/file_chunker.cpp') diff --git a/src/buildtool/storage/file_chunker.cpp b/src/buildtool/storage/file_chunker.cpp index af318501..8e747900 100644 --- a/src/buildtool/storage/file_chunker.cpp +++ b/src/buildtool/storage/file_chunker.cpp @@ -99,14 +99,14 @@ auto FileChunker::NextChunkBoundary() noexcept -> std::size_t { } for (; i < normal_size; i++) { fp = (fp << 1U) + - gsl::at(gear_table, static_cast(buffer_[pos_ + i])); + gsl::at(gear_table, static_cast(buffer_[pos_ + i])); if ((fp & kMaskS) == 0) { return i; // if the masked bits are all '0' } } for (; i < n; i++) { fp = (fp << 1U) + - gsl::at(gear_table, static_cast(buffer_[pos_ + i])); + gsl::at(gear_table, static_cast(buffer_[pos_ + i])); if ((fp & kMaskL) == 0) { return i; // if the masked bits are all '0' } -- cgit v1.2.3