From 816dca636f5db2a3941752329820cd43c6d5a8cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marie-Eve=20Dub=C3=A9?= Date: Tue, 12 May 2020 18:35:30 -0400 Subject: Fixing typos in matrix4x4, matrix3x3, matrix2x2 operator== --- Common/interface/BasicMath.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Common/interface') diff --git a/Common/interface/BasicMath.hpp b/Common/interface/BasicMath.hpp index cbd3509d..06300908 100644 --- a/Common/interface/BasicMath.hpp +++ b/Common/interface/BasicMath.hpp @@ -734,7 +734,7 @@ template struct Matrix2x2 bool operator==(const Matrix2x2& r) const { for (int i = 0; i < 2; ++i) - for (int j = 0; i < 2; ++i) + for (int j = 0; j < 2; ++j) if ((*this)[i][j] != r[i][j]) return false; @@ -913,7 +913,7 @@ template struct Matrix3x3 bool operator==(const Matrix3x3& r) const { for (int i = 0; i < 3; ++i) - for (int j = 0; i < 3; ++i) + for (int j = 0; j < 3; ++j) if ((*this)[i][j] != r[i][j]) return false; @@ -1107,7 +1107,7 @@ template struct Matrix4x4 bool operator==(const Matrix4x4& r) const { for (int i = 0; i < 4; ++i) - for (int j = 0; i < 4; ++i) + for (int j = 0; j < 4; ++j) if ((*this)[i][j] != r[i][j]) return false; -- cgit v1.2.3