diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Vector3.h | 8 |
1 files changed, 0 insertions, 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 <typename T2> inline Vector3<T> & operator = (const Vector3<T2> & a_Rhs) - { - x = (T)a_Rhs.x; - y = (T)a_Rhs.y; - z = (T)a_Rhs.z; - return *this; - } - // tolua_begin inline Vector3<T> operator + (const Vector3<T>& a_Rhs) const |