From 63ea667ed78b35a0b59be341dc23c1d09c2fa776 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 30 Mar 2012 11:22:23 +0200 Subject: [PATCH] fix compilation with ICC --- Eigen/src/Cholesky/LLT.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Cholesky/LLT.h b/Eigen/src/Cholesky/LLT.h index dd705c57e..84c91fc5d 100644 --- a/Eigen/src/Cholesky/LLT.h +++ b/Eigen/src/Cholesky/LLT.h @@ -335,7 +335,7 @@ template struct llt_inplace template static typename MatrixType::Index rankUpdate(MatrixType& mat, const VectorType& vec, const RealScalar& sigma) { - return llt_rank_update_lower(mat, vec, sigma); + return Eigen::internal::llt_rank_update_lower(mat, vec, sigma); } };