Browse Source

precision: fixing typo in previous 84f78d827d

Signed-off-by: Christoph Ruegg <git@cdrnet.ch>
pull/36/head
Christoph Ruegg 17 years ago
parent
commit
f3dcba5c6c
  1. 4
      src/Numerics/Precision.cs

4
src/Numerics/Precision.cs

@ -265,7 +265,7 @@ namespace MathNet.Numerics
if (count < 0)
{
Decrement(value, -count);
return Decrement(value, -count);
}
// Translate the bit pattern of the double to an integer.
@ -328,7 +328,7 @@ namespace MathNet.Numerics
if (count < 0)
{
Decrement(value, -count);
return Decrement(value, -count);
}
// Translate the bit pattern of the double to an integer.

Loading…
Cancel
Save