Fixed Vector4 >(=) comparison
Former-commit-id: d3c5d233bb565dbfa0535487fe21bd00ad0281b4
This commit is contained in:
@@ -464,13 +464,13 @@ bool NzVector4<T>::operator<=(const NzVector4& vec) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
bool NzVector3<T>::operator>(const NzVector3& vec) const
|
bool NzVector4<T>::operator>(const NzVector4& vec) const
|
||||||
{
|
{
|
||||||
return !operator<=(vec);
|
return !operator<=(vec);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
bool NzVector3<T>::operator>=(const NzVector3& vec) const
|
bool NzVector4<T>::operator>=(const NzVector4& vec) const
|
||||||
{
|
{
|
||||||
return !operator<(vec);
|
return !operator<(vec);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user