From beffa1ce2ae35fc15496c8c77de67550f12ea4c6 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Wed, 8 Jul 2015 08:50:54 +0200 Subject: [PATCH] [GL] Point: remove potential insecure constructor. --- GeoLib/Point.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/GeoLib/Point.h b/GeoLib/Point.h index 941f80b9452..231050fd7cb 100644 --- a/GeoLib/Point.h +++ b/GeoLib/Point.h @@ -43,11 +43,6 @@ public: MathLib::Point3dWithID(), GeoLib::GeoObject() {} - Point(double const* x) : - MathLib::Point3dWithID(std::array<double,3>({{x[0], x[1], x[2]}}), 0), - GeoLib::GeoObject() - {} - Point(MathLib::Point3d const& x, std::size_t id) : MathLib::Point3dWithID(x, id), GeoLib::GeoObject() {} -- GitLab