Commit 556f367d authored by hybrid's avatar hybrid

Fix constness for proper overloading

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3912 dfc29bdd-3216-0410-991c-e03cc46cb475
parent fa754dd4
...@@ -422,7 +422,7 @@ namespace core ...@@ -422,7 +422,7 @@ namespace core
inline vector3d<s32>& vector3d<s32>::operator /=(s32 val) {X/=val;Y/=val;Z/=val; return *this;} inline vector3d<s32>& vector3d<s32>::operator /=(s32 val) {X/=val;Y/=val;Z/=val; return *this;}
template <> template <>
inline vector3d<s32> vector3d<s32>::getSphericalCoordinateAngles() inline vector3d<s32> vector3d<s32>::getSphericalCoordinateAngles() const
{ {
vector3d<s32> angle; vector3d<s32> angle;
const f64 length = X*X + Y*Y + Z*Z; const f64 length = X*X + Y*Y + Z*Z;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment