From da46b1ed5412a7bf727f489ca4f782abcd4743e8 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 27 Nov 2015 15:57:18 +0100 Subject: [PATCH] bug #1112: fix compilation on exotic architectures --- unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h b/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h index b37481cbe..14a8aef58 100644 --- a/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +++ b/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h @@ -348,7 +348,7 @@ void matrix_exp_compute(const MatrixType& arg, ResultType &result) typedef typename NumTraits::Real RealScalar; typedef typename std::complex ComplexScalar; if (sizeof(RealScalar) > 14) { - result = arg.matrixFunction(StdStemFunctions::exp); + result = arg.matrixFunction(internal::stem_function_exp); return; } #endif