mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-05-29 14:40:40 +00:00
Fixed bench
This commit is contained in:
@@ -465,7 +465,7 @@ mod bench {
|
||||
b.iter(|| {
|
||||
let mut left = [1, 5, 10, 12];
|
||||
let right = [5, 7];
|
||||
intersection(&mut left, &right, 0);
|
||||
intersection(&mut left, &right);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -474,7 +474,7 @@ mod bench {
|
||||
b.iter(|| {
|
||||
let left = [1, 5, 10, 12];
|
||||
let right = [5, 7];
|
||||
intersection_count(&left, &right, 0);
|
||||
intersection_count(&left, &right);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user