diff options
author | 2021-10-10 23:41:18 -0700 | |
---|---|---|
committer | 2021-10-10 23:41:18 -0700 | |
commit | 0db7af6166dba28126ab71814fc84c75bbd9acef (patch) | |
tree | 2c387e4bfb7ef9794164fb8341b5f507b2d03a58 /src/hash_map.zig | |
parent | 5e3d1dd4b5618a64dac60a1c3345fba084be34b2 (diff) | |
download | bun-0db7af6166dba28126ab71814fc84c75bbd9acef.tar.gz bun-0db7af6166dba28126ab71814fc84c75bbd9acef.tar.zst bun-0db7af6166dba28126ab71814fc84c75bbd9acef.zip |
[fetch] Add support for gzip & deflate to the http client
Powered by Cloudflare's zlib fork
Diffstat (limited to 'src/hash_map.zig')
-rw-r--r-- | src/hash_map.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash_map.zig b/src/hash_map.zig index 1c5d86900..fa553f939 100644 --- a/src/hash_map.zig +++ b/src/hash_map.zig @@ -12,7 +12,7 @@ const mem = std.mem; const meta = std.meta; const trait = meta.trait; const Allocator = mem.Allocator; -const Wyhash = @import("./Wyhash.zig").Wyhash; +const Wyhash = std.hash.Wyhash; pub fn getAutoHashFn(comptime K: type) (fn (K) u64) { comptime { |