summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-05-04 13:29:32 +0200
committermadmaxoft <github@xoft.cz>2014-05-04 13:29:32 +0200
commit136aeb1f643d10561e975f9c5539043c9a9b647c (patch)
tree022161c9bb7ad12bc238f6c9048fda27e4b9bc94
parentRemoved the controversial Vector3::operator <. (diff)
downloadcuberite-136aeb1f643d10561e975f9c5539043c9a9b647c.tar
cuberite-136aeb1f643d10561e975f9c5539043c9a9b647c.tar.gz
cuberite-136aeb1f643d10561e975f9c5539043c9a9b647c.tar.bz2
cuberite-136aeb1f643d10561e975f9c5539043c9a9b647c.tar.lz
cuberite-136aeb1f643d10561e975f9c5539043c9a9b647c.tar.xz
cuberite-136aeb1f643d10561e975f9c5539043c9a9b647c.tar.zst
cuberite-136aeb1f643d10561e975f9c5539043c9a9b647c.zip
-rw-r--r--src/Vector3.h8
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