1
0

Removed convert-assign operator.

We want all conversions to be explicit, not hidden.
This commit is contained in:
madmaxoft 2014-05-04 13:29:32 +02:00
parent b4496278a5
commit 136aeb1f64

View File

@ -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