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 d3e510ae6..ae544f8be 100644
--- a/src/ast/base.zig
+++ b/src/ast/base.zig
@@ -275,7 +275,7 @@ pub const Ref = packed struct(u64) {
}
pub inline fn hash64(key: Ref) u64 {
- return std.hash.Wyhash.hash(0, &@bitCast([8]u8, key.asU64()));
+ return bun.hash(&@bitCast([8]u8, key.asU64()));
}
pub fn eql(ref: Ref, b: Ref) bool {