From 31a96aa9e5e5f5e7f31124f8681ab1e4c6273eae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 28 Apr 2012 14:46:22 +0200 Subject: [PATCH] Fixed compilation error in Matrix4. Didn't notice it until now because the function wasn't used before at all. --- src/Math/Matrix4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Math/Matrix4.h b/src/Math/Matrix4.h index 211cfda2d..b36946258 100644 --- a/src/Math/Matrix4.h +++ b/src/Math/Matrix4.h @@ -111,7 +111,7 @@ template class Matrix4: public Matrix { } /** @copydoc Matrix::Matrix(ZeroType) */ - inline constexpr explicit Matrix4(typename Matrix::ZeroType): Matrix(Matrix::Zero) {} + inline constexpr explicit Matrix4(typename Matrix::ZeroType): Matrix(Matrix::Zero) {} /** @copydoc Matrix::Matrix(IdentityType, T) */ inline constexpr explicit Matrix4(typename Matrix::IdentityType = Matrix::Identity, T value = T(1)): Matrix(