From 50599dd88ed6e637d2f24f89481600e1da896f3f Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Wed, 8 Jul 2015 07:29:22 +0200 Subject: [PATCH] [MaL] TemplatePoint: Remove unused setCoords(). --- MathLib/TemplatePoint.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/MathLib/TemplatePoint.h b/MathLib/TemplatePoint.h index 06730f979cd..9ba8953e638 100644 --- a/MathLib/TemplatePoint.h +++ b/MathLib/TemplatePoint.h @@ -44,7 +44,6 @@ public: */ explicit TemplatePoint(std::array<T,DIM> const& x); - /** virtual destructor */ virtual ~TemplatePoint() {} @@ -74,13 +73,6 @@ public: return _x.data(); } - /** set the coordinates of the point */ - void setCoords (const T* coords) - { - for (unsigned i=0; i<DIM; i++) - _x[i] = coords[i]; - } - /** write point coordinates into stream (used from operator<<) * \param os a standard output stream */ -- GitLab