We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01f0946 commit 7081b6dCopy full SHA for 7081b6d
.github/FUNDING.yml
@@ -1 +1 @@
1
-github: slimsag
+github: emidoots
src/binaryfusefilter.zig
@@ -333,7 +333,7 @@ pub fn BinaryFuse(comptime T: type) type {
333
const hh: u64 = hash & ((@as(u64, 1) << 36) - 1);
334
// index 0: right shift by 36; index 1: right shift by 18; index 2: no shift
335
//
336
- // NOTE(slimsag): using u64 here instead of size_it as in upstream C implementation; I think
+ // NOTE: using u64 here instead of size_it as in upstream C implementation; I think
337
// that size_t may be incorrect for 32-bit platforms?
338
const shift_count = (36 - 18 * index);
339
if (shift_count >= 63) {
0 commit comments