We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6970874 commit edafd12Copy full SHA for edafd12
src/TrigramStore.zig
@@ -453,7 +453,7 @@ test CuckooFilter {
453
var gen_prng: std.Random.DefaultPrng = .init(gen_prng_seed);
454
for (0..element_count) |_| {
455
const trigram: Trigram = @bitCast(gen_prng.random().int(u24));
456
- entries.putAssumeCapacity(allocator, trigram, {});
+ entries.putAssumeCapacity(trigram, {});
457
try filter.append(filter_prng.random(), trigram);
458
}
459
0 commit comments