From 136aeb1f643d10561e975f9c5539043c9a9b647c Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Sun, 4 May 2014 13:29:32 +0200 Subject: [PATCH] Removed convert-assign operator. We want all conversions to be explicit, not hidden. --- src/Vector3.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Vector3.h b/src/Vector3.h index 20f9b4ca7..276bf67c9 100644 --- a/src/Vector3.h +++ b/src/Vector3.h @@ -175,14 +175,6 @@ public: return *this; } - template inline Vector3 & operator = (const Vector3 & a_Rhs) - { - x = (T)a_Rhs.x; - y = (T)a_Rhs.y; - z = (T)a_Rhs.z; - return *this; - } - // tolua_begin inline Vector3 operator + (const Vector3& a_Rhs) const