Skip to content

Commit 49237fb

Browse files
committed
type
Signed-off-by: Robert Kruszewski <github@robertk.io>
1 parent b61301e commit 49237fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/src/arrow/util/byte_size.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ struct GetByteRangesArray {
207207
// 2. Reference a value multiple times without repeating it in the data buffer
208208
//
209209
// Producing exact byte size would require linear scan of all values in view buffer
210-
for (int i = 2; i < input.buffers.size(); i++) {
210+
for (size_t i = 2; i < input.buffers.size(); i++) {
211211
const Buffer& buf = *input.buffers[i];
212212
RETURN_NOT_OK(range_starts->Append(reinterpret_cast<uint64_t>(buf.data())));
213213
RETURN_NOT_OK(range_offsets->Append(0));

0 commit comments

Comments
 (0)