mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
bug #1112: fix compilation on exotic architectures
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user