Fixed Vector4 >(=) comparison

Former-commit-id: d3c5d233bb565dbfa0535487fe21bd00ad0281b4
This commit is contained in:
Lynix 2012-12-02 23:50:32 +01:00
parent b775542e4d
commit b4282e6a6e
1 changed files with 2 additions and 2 deletions

View File

@ -464,13 +464,13 @@ bool NzVector4<T>::operator<=(const NzVector4& vec) const
}
template<typename T>
bool NzVector3<T>::operator>(const NzVector3& vec) const
bool NzVector4<T>::operator>(const NzVector4& vec) const
{
return !operator<=(vec);
}
template<typename T>
bool NzVector3<T>::operator>=(const NzVector3& vec) const
bool NzVector4<T>::operator>=(const NzVector4& vec) const
{
return !operator<(vec);
}