aboutsummaryrefslogtreecommitdiff
path: root/src/blob.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/blob.zig')
-rw-r--r--src/blob.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blob.zig b/src/blob.zig
index 65679978d..b914c45a9 100644
--- a/src/blob.zig
+++ b/src/blob.zig
@@ -21,7 +21,7 @@ pub const Map = struct {
pub fn hash(_: @This(), s: u64) u32 {
return @truncate(u32, s);
}
- pub fn eql(_: @This(), a: u64, b: u64) bool {
+ pub fn eql(_: @This(), a: u64, b: u64, _: usize) bool {
return a == b;
}
};