From dee72058b7a9d25353b699ff6619baac1f8be6f8 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Thu, 25 Jun 2015 14:59:11 +0200
Subject: [PATCH] [T] Rewrite loop to avoid implicit conversions.

---
 Tests/GeoLib/TestOctTree.cpp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Tests/GeoLib/TestOctTree.cpp b/Tests/GeoLib/TestOctTree.cpp
index 6a68a1099dd..939a643d831 100644
--- a/Tests/GeoLib/TestOctTree.cpp
+++ b/Tests/GeoLib/TestOctTree.cpp
@@ -298,11 +298,11 @@ TEST_F(GeoLibOctTree, TestSmallDistanceDifferentLeaves)
 	// case where two points with a small distance but different OctTree leaves
 	// are inserted
 	double const eps(0.5);
-	for (int k(-10); k<11; ++k) {
-		for (int j(-10); j<11; ++j) {
-			std::size_t id((k+10)*21+(j+10));
-			for (int i(-10); i<11; ++i) {
-				ps_ptr.push_back(new GeoLib::Point(1.0*i, 1.0*j, 1.0*k, id+i+10));
+	for (std::size_t k = 0; k < 21; ++k) {
+		for (std::size_t j = 0; j < 21; ++j) {
+			std::size_t id = k*21+j;
+			for (std::size_t i = 0; i < 21; ++i) {
+				ps_ptr.push_back(new GeoLib::Point(i-10., j-10., k-10., id+i));
 			}
 		}
 	}
-- 
GitLab