From f3f0b13875cccb94312837cc84db779db082a647 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Wed, 8 Jul 2015 07:09:26 +0200
Subject: [PATCH] [GL] Point: Made first argument of constructor more general.

---
 GeoLib/Point.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/GeoLib/Point.h b/GeoLib/Point.h
index 4b27f267e0d..2858e817fb3 100644
--- a/GeoLib/Point.h
+++ b/GeoLib/Point.h
@@ -48,8 +48,8 @@ public:
 		GeoLib::GeoObject()
 	{}
 
-	Point(Point const& p, std::size_t id) :
-		MathLib::Point3dWithID(p, id), GeoLib::GeoObject()
+	Point(MathLib::Point3d const& x, std::size_t id) :
+		MathLib::Point3dWithID(x, id), GeoLib::GeoObject()
 	{}
 
 	Point(std::array<double,3> const& x,
-- 
GitLab