diff --git a/src/Math/Matrix3.h b/src/Math/Matrix3.h index 6fccee0dc..73b8e1cf8 100644 --- a/src/Math/Matrix3.h +++ b/src/Math/Matrix3.h @@ -46,12 +46,12 @@ template class Matrix3: public Matrix { inline constexpr explicit Matrix3(typename Matrix::ZeroType): Matrix(Matrix::Zero) {} /** @copydoc Matrix::Matrix(IdentityType, T) */ - inline constexpr explicit Matrix3(typename Matrix::IdentityType = Matrix::Identity, T value = T(1)): Matrix{ + inline constexpr explicit Matrix3(typename Matrix::IdentityType = Matrix::Identity, T value = T(1)): Matrix( /** @todo Make this in Matrix itself, after it will be constexpr */ value, 0.0f, 0.0f, 0.0f, value, 0.0f, 0.0f, 0.0f, value - } {} + ) {} #ifndef DOXYGEN_GENERATING_OUTPUT template explicit Matrix3(U) = delete; diff --git a/src/Math/Matrix4.h b/src/Math/Matrix4.h index a4f2e24cc..211cfda2d 100644 --- a/src/Math/Matrix4.h +++ b/src/Math/Matrix4.h @@ -114,13 +114,13 @@ template class Matrix4: public Matrix { 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{ + inline constexpr explicit Matrix4(typename Matrix::IdentityType = Matrix::Identity, T value = T(1)): Matrix( /** @todo Make this in Matrix itself, after it will be constexpr */ value, 0.0f, 0.0f, 0.0f, 0.0f, value, 0.0f, 0.0f, 0.0f, 0.0f, value, 0.0f, 0.0f, 0.0f, 0.0f, value - } {} + ) {} #ifndef DOXYGEN_GENERATING_OUTPUT template explicit Matrix4(U) = delete;