From f3dcba5c6c709a7298c0dcee938d795750305e8b Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Fri, 14 Aug 2009 15:52:49 +0800 Subject: [PATCH] precision: fixing typo in previous 84f78d827d Signed-off-by: Christoph Ruegg --- src/Numerics/Precision.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Numerics/Precision.cs b/src/Numerics/Precision.cs index afb506bc..b4c1adf7 100644 --- a/src/Numerics/Precision.cs +++ b/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.