Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update after merge
  • Loading branch information
grendello committed Feb 15, 2024
commit 876b8843cac71d045756e516d50f97bee5d47ed2
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static ulong HashJavaName (string name, bool is64Bit)
static ulong HashBytes (byte[] bytes, bool is64Bit)
{
if (is64Bit) {
return XxHash64.HashToUInt64 (bytes);
return XxHash3.HashToUInt64 (bytes);
}

return (ulong)XxHash32.HashToUInt32 (bytes);
Expand Down