From fdb994ddd8aadebb9906c519547b862a26f9d754 Mon Sep 17 00:00:00 2001 From: alemuntoni Date: Wed, 6 May 2020 12:00:29 +0200 Subject: [PATCH] removed unuseful matrix44 copy constructor --- vcg/math/matrix44.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vcg/math/matrix44.h b/vcg/math/matrix44.h index 2ea806d6..2dca8aca 100644 --- a/vcg/math/matrix44.h +++ b/vcg/math/matrix44.h @@ -85,7 +85,7 @@ public: */ Matrix44() {} ~Matrix44() {} - Matrix44(const Matrix44 &m); + //Matrix44(const Matrix44 &m); Matrix44(const T v[]); T &ElementAt(const int row, const int col); @@ -243,9 +243,9 @@ typedef Matrix44 Matrix44d; -template Matrix44::Matrix44(const Matrix44 &m) { - memcpy((T *)_a, (const T *)m._a, 16 * sizeof(T)); -} +//template Matrix44::Matrix44(const Matrix44 &m) { +// memcpy((T *)_a, (const T *)m._a, 16 * sizeof(T)); +//} template Matrix44::Matrix44(const T v[]) { memcpy((T *)_a, v, 16 * sizeof(T));