diff --git a/streams/voxel_stream.cpp b/streams/voxel_stream.cpp index 69d3d008..8fe62a62 100644 --- a/streams/voxel_stream.cpp +++ b/streams/voxel_stream.cpp @@ -45,7 +45,7 @@ bool VoxelStream::supports_instance_blocks() const { void VoxelStream::load_instance_blocks( ArraySlice out_blocks, ArraySlice out_results) { // Can be implemented in subclasses - for (int i = 0; i < out_results.size(); ++i) { + for (size_t i = 0; i < out_results.size(); ++i) { out_results[i] = RESULT_BLOCK_NOT_FOUND; } }