Skip to content
Snippets Groups Projects
Commit beffa1ce authored by Tom Fischer's avatar Tom Fischer
Browse files

[GL] Point: remove potential insecure constructor.

parent 97af6e0f
No related branches found
No related tags found
No related merge requests found
......@@ -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()
{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment