diff options
author | 2022-03-04 00:20:22 -0800 | |
---|---|---|
committer | 2022-03-04 00:20:22 -0800 | |
commit | 51fbbea1d3dc2b610fe5fe525229e56b581e5c8a (patch) | |
tree | c75e063c4eb7c99737fbf7a5a2014f9546e2e218 /src/identity_context.zig | |
parent | 696710fd7aedee6054947aab002aaa853e9ee731 (diff) | |
download | bun-jarred/upgrade-zig-2.tar.gz bun-jarred/upgrade-zig-2.tar.zst bun-jarred/upgrade-zig-2.zip |
upgrade zigjarred/upgrade-zig-2
Diffstat (limited to '')
-rw-r--r-- | src/identity_context.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/identity_context.zig b/src/identity_context.zig index 299907b34..7bcfa3dbc 100644 --- a/src/identity_context.zig +++ b/src/identity_context.zig @@ -17,7 +17,7 @@ pub const ArrayIdentityContext = struct { return key; } - pub fn eql(_: @This(), a: u32, b: u32) bool { + pub fn eql(_: @This(), a: u32, b: u32, _: usize) bool { return a == b; } }; |