diff --git a/include/Nazara/Math/Vector4.inl b/include/Nazara/Math/Vector4.inl index fd116e51d..768a17de6 100644 --- a/include/Nazara/Math/Vector4.inl +++ b/include/Nazara/Math/Vector4.inl @@ -464,13 +464,13 @@ bool NzVector4::operator<=(const NzVector4& vec) const } template -bool NzVector3::operator>(const NzVector3& vec) const +bool NzVector4::operator>(const NzVector4& vec) const { return !operator<=(vec); } template -bool NzVector3::operator>=(const NzVector3& vec) const +bool NzVector4::operator>=(const NzVector4& vec) const { return !operator<(vec); }