From e68cda878cb74d47d8b62c2e86165c22129fd743 Mon Sep 17 00:00:00 2001 From: "Heres, Daniel" Date: Sun, 7 Nov 2021 22:39:27 +0100 Subject: [PATCH] Remove comment --- src/bitmap/bitmap_ops.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bitmap/bitmap_ops.rs b/src/bitmap/bitmap_ops.rs index 956df787d7b..28584d3c6fa 100644 --- a/src/bitmap/bitmap_ops.rs +++ b/src/bitmap/bitmap_ops.rs @@ -82,7 +82,6 @@ where .zip(rhs_chunks) .map(|(left, right)| op(left, right)); - // Soundness: `BitChunks` is a trusted len iterator let buffer = MutableBuffer::from_chunk_iter(chunks.chain(std::iter::once(op(rem_lhs, rem_rhs))));