From d215908a212d02483b44a5b88cfd5bd7e431487e Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Thu, 15 Jan 2015 12:32:57 +0100
Subject: [PATCH] [GL] MinimalBoundingSphere: fix old style cast warning.

---
 GeoLib/MinimalBoundingSphere.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/GeoLib/MinimalBoundingSphere.cpp b/GeoLib/MinimalBoundingSphere.cpp
index a85dd08dfc1..a4968b51c66 100644
--- a/GeoLib/MinimalBoundingSphere.cpp
+++ b/GeoLib/MinimalBoundingSphere.cpp
@@ -194,7 +194,7 @@ std::vector<MathLib::Point3d*>* MinimalBoundingSphere::getRandomSpherePoints(std
         double sum (0);
         for (unsigned i=0; i<3; ++i)
         {
-            vec[i] = (double)rand()-(RAND_MAX/2.0);
+            vec[i] = static_cast<double>(rand())-(RAND_MAX/2.0);
             sum+=(vec[i]*vec[i]);
         }
         double const fac (_radius/sqrt(sum));
-- 
GitLab