aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/src/MatrixFunctions
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-11-27 15:57:18 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-11-27 15:57:18 +0100
commitda46b1ed5412a7bf727f489ca4f782abcd4743e8 (patch)
tree90e023c369e13d3c48bc6b9d9416f0da3d7e794f /unsupported/Eigen/src/MatrixFunctions
parent1261d020c31d64ad835c532251d9eed9a55d7c92 (diff)
bug #1112: fix compilation on exotic architectures
Diffstat (limited to 'unsupported/Eigen/src/MatrixFunctions')
-rw-r--r--unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h2
1 files changed, 1 insertions, 1 deletions
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<Scalar>::Real RealScalar;
typedef typename std::complex<RealScalar> ComplexScalar;
if (sizeof(RealScalar) > 14) {
- result = arg.matrixFunction(StdStemFunctions<ComplexScalar>::exp);
+ result = arg.matrixFunction(internal::stem_function_exp<ComplexScalar>);
return;
}
#endif