aboutsummaryrefslogtreecommitdiff
path: root/src/ast/base.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/base.zig')
-rw-r--r--src/ast/base.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/base.zig b/src/ast/base.zig
index 36800cd7b..827951027 100644
--- a/src/ast/base.zig
+++ b/src/ast/base.zig
@@ -28,7 +28,7 @@ pub const RefHashCtx = struct {
return key.hash();
}
- pub fn eql(_: @This(), ref: Ref, b: Ref) bool {
+ pub fn eql(_: @This(), ref: Ref, b: Ref, _: usize) bool {
return ref.asU64() == b.asU64();
}
};