We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 851b473 commit e5cb75cCopy full SHA for e5cb75c
1 file changed
Src/FastData/Internal/Misc/PrimitiveHash.cs
@@ -28,8 +28,8 @@ private static ulong HashF32(float value)
28
29
unchecked
30
{
31
- if (((bits - 1) & ~(0x8000_0000)) >= 0x7FF0_0000)
32
- bits &= 0x7FF0_0000;
+ if (((bits - 1) & ~0x8000_0000) >= 0x7F80_0000)
+ bits &= 0x7F80_0000;
33
}
34
35
return bits;
0 commit comments