Fixed Vector4 >(=) comparison
Former-commit-id: d3c5d233bb565dbfa0535487fe21bd00ad0281b4
This commit is contained in:
parent
b775542e4d
commit
b4282e6a6e
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue