aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Cholesky
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Cholesky')
-rw-r--r--Eigen/src/Cholesky/LLT.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Cholesky/LLT.h b/Eigen/src/Cholesky/LLT.h
index 53e97cd3f..4527067a8 100644
--- a/Eigen/src/Cholesky/LLT.h
+++ b/Eigen/src/Cholesky/LLT.h
@@ -116,7 +116,7 @@ template<typename MatrixType, int _UpLo> class LLT
bool m_isInitialized;
};
-template<typename MatrixType/*, int UpLo*/>
+template<typename MatrixType>
bool ei_inplace_llt_lo(MatrixType& mat)
{
typedef typename MatrixType::Scalar Scalar;
@@ -157,7 +157,7 @@ bool ei_inplace_llt_lo(MatrixType& mat)
return true;
}
-template<typename MatrixType/*, int UpLo*/>
+template<typename MatrixType>
bool ei_inplace_llt_up(MatrixType& mat)
{
typedef typename MatrixType::Scalar Scalar;