Skip to content

Commit d50c4bb

Browse files
authored
Change long to ulong internally
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 9e6b9b1 commit d50c4bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HashifyNet/Algorithms/XxHash/XxHash_Implementation.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public override IBlockTransformer CreateBlockTransformer()
7575
return new BlockTransformer32((uint)_config.Seed);
7676

7777
case 64:
78-
return new BlockTransformer64(_config.Seed);
78+
return new BlockTransformer64((ulong)_config.Seed);
7979

8080
default:
8181
throw new NotImplementedException();
@@ -446,3 +446,4 @@ private static ulong RotateLeft(ulong operand, int shiftCount)
446446
}
447447
}
448448
}
449+

0 commit comments

Comments
 (0)