There was an error while loading. Please reload this page.
1 parent a1ea4e8 commit 8d6f29bCopy full SHA for 8d6f29b
csharp/sbe-dll/PrimitiveValue.cs
@@ -501,7 +501,7 @@ public override bool Equals(object value)
501
502
case Representation.Double:
503
{
504
- return _doubleValue.Equals(rhs._doubleValue);
+ return BitConverter.DoubleToInt64Bits(_doubleValue) == BitConverter.DoubleToInt64Bits(rhs._doubleValue);
505
}
506
507
case Representation.ByteArray:
0 commit comments