aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SuperLUSupport/SuperLUSupport.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-12-05 12:50:43 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-12-05 12:50:43 +0100
commit9ca673daed9b790ce9967439868a0018bcf6a777 (patch)
treebfe0f866c521fea76d47d9bb966e34661b4fa1d2 /Eigen/src/SuperLUSupport/SuperLUSupport.h
parentdd504d6aae05c60337e9bc8d06c7defcf0b719ff (diff)
fix compilation with clang
Diffstat (limited to 'Eigen/src/SuperLUSupport/SuperLUSupport.h')
-rw-r--r--Eigen/src/SuperLUSupport/SuperLUSupport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/SuperLUSupport/SuperLUSupport.h b/Eigen/src/SuperLUSupport/SuperLUSupport.h
index 0fc43832f..23ea2c721 100644
--- a/Eigen/src/SuperLUSupport/SuperLUSupport.h
+++ b/Eigen/src/SuperLUSupport/SuperLUSupport.h
@@ -613,7 +613,7 @@ void SuperLU<MatrixType>::factorize(const MatrixType& a)
return;
}
- initFactorization(a);
+ this->initFactorization(a);
int info = 0;
RealScalar recip_pivot_growth, rcond;