From b4282e6a6eda1d6ba2868850f5148dbd56feaca5 Mon Sep 17 00:00:00 2001 From: Lynix Date: Sun, 2 Dec 2012 23:50:32 +0100 Subject: [PATCH] Fixed Vector4 >(=) comparison Former-commit-id: d3c5d233bb565dbfa0535487fe21bd00ad0281b4 --- include/Nazara/Math/Vector4.inl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }