Skip to content

Commit ed0f9a8

Browse files
committed
Remove into_iter use
1 parent 7adcb44 commit ed0f9a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raw/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,7 @@ impl<A: Allocator + Clone> RawTableInner<A> {
12751275
loop {
12761276
let group = unsafe { Group::load(self.ctrl(probe_seq.pos)) };
12771277

1278-
for bit in group.match_byte(h2_hash).into_iter() {
1278+
for bit in group.match_byte(h2_hash) {
12791279
let index = (probe_seq.pos + bit) & self.bucket_mask;
12801280

12811281
if likely(eq(index)) {

0 commit comments

Comments
 (0)