diff --git a/src/Math/Matrix3.h b/src/Math/Matrix3.h index c5b4d3959..874c40e89 100644 --- a/src/Math/Matrix3.h +++ b/src/Math/Matrix3.h @@ -45,7 +45,7 @@ template class Matrix3: public Matrix { /** @copydoc Matrix::Matrix(ZeroType) */ inline constexpr explicit Matrix3(typename Matrix::ZeroType): Matrix(Matrix::Zero) {} - /** @copydoc Matrix::Matrix(IdentityType) */ + /** @copydoc Matrix::Matrix(IdentityType, T) */ 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, diff --git a/src/Math/Matrix4.h b/src/Math/Matrix4.h index ba3d98c43..3ed0f3c55 100644 --- a/src/Math/Matrix4.h +++ b/src/Math/Matrix4.h @@ -113,7 +113,7 @@ template class Matrix4: public Matrix { /** @copydoc Matrix::Matrix(ZeroType) */ inline constexpr explicit Matrix4(typename Matrix::ZeroType): Matrix(Matrix::Zero) {} - /** @copydoc Matrix::Matrix(IdentityType) */ + /** @copydoc Matrix::Matrix(IdentityType, T) */ 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,