Skip to content

Commit d6795c0

Browse files
committed
Remove into_iter use
1 parent c6d8f02 commit d6795c0

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
@@ -1174,7 +1174,7 @@ impl<A: Allocator + Clone> RawTableInner<A> {
11741174
loop {
11751175
let group = unsafe { Group::load(self.ctrl(probe_seq.pos)) };
11761176

1177-
for bit in group.match_byte(h2_hash).into_iter() {
1177+
for bit in group.match_byte(h2_hash) {
11781178
let index = (probe_seq.pos + bit) & self.bucket_mask;
11791179

11801180
if likely(eq(index)) {

0 commit comments

Comments
 (0)