From c620d153c053b5a394bfd142100d1a5112c196dd Mon Sep 17 00:00:00 2001 From: stefan meyer <stefan.meyer@student.tugraz.at> Date: Tue, 29 Aug 2017 14:37:04 +0200 Subject: [PATCH] commit SI *.cs --- VectoCommon/VectoCommon/Utils/SI.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VectoCommon/VectoCommon/Utils/SI.cs b/VectoCommon/VectoCommon/Utils/SI.cs index ac61c73209..aebe68b69e 100644 --- a/VectoCommon/VectoCommon/Utils/SI.cs +++ b/VectoCommon/VectoCommon/Utils/SI.cs @@ -1214,7 +1214,7 @@ namespace TUGraz.VectoCommon.Utils if (factor.HasValue) { //Val /= (factor.Value * _exponent); - Val /= Math.Pow(factor.Value, (double)_exponent); + Val /= Math.Pow(factor.Value, _exponent); } } @@ -1223,7 +1223,7 @@ namespace TUGraz.VectoCommon.Utils if (factor.HasValue) { //Val *= (factor.Value * _exponent); - Val *= Math.Pow(factor.Value,(double)_exponent); + Val *= Math.Pow(factor.Value,_exponent); } } -- GitLab