aboutsummaryrefslogtreecommitdiff
path: root/src/value.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/value.zig')
-rw-r--r--src/value.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/value.zig b/src/value.zig
index 6c2403e13b..e444e2daf1 100644
--- a/src/value.zig
+++ b/src/value.zig
@@ -1765,7 +1765,8 @@ pub const Value = extern union {
const other_context: HashContext = .{ .ty = self.ty };
return @truncate(u32, other_context.hash(val));
}
- pub fn eql(self: @This(), a: Value, b: Value) bool {
+ pub fn eql(self: @This(), a: Value, b: Value, b_index: usize) bool {
+ _ = b_index;
return a.eql(b, self.ty);
}
};