diff options
author | Gael Guennebaud <g.gael@free.fr> | 2009-08-24 18:56:27 +0200 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2009-08-24 18:56:27 +0200 |
commit | 078a870a873650fb5cc50dd02fa0cfb5f0b15bbb (patch) | |
tree | 7ce9a4430f5a2eac897459e9fbae35c0da80ca5d /Eigen/src/Jacobi | |
parent | 0eb142f5595aa7d18b6c08a9e8ebc355f3a9b525 (diff) |
fix issue #43
Diffstat (limited to 'Eigen/src/Jacobi')
-rw-r--r-- | Eigen/src/Jacobi/Jacobi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Jacobi/Jacobi.h b/Eigen/src/Jacobi/Jacobi.h index a6670a49f..c16345100 100644 --- a/Eigen/src/Jacobi/Jacobi.h +++ b/Eigen/src/Jacobi/Jacobi.h @@ -149,7 +149,7 @@ void /*EIGEN_DONT_INLINE*/ ei_apply_rotation_in_the_plane(VectorX& _x, VectorY& const Packet pc = ei_pset1(c); const Packet ps = ei_pset1(s); - ei_conj_helper<true,false> cj; + ei_conj_helper<NumTraits<Scalar>::IsComplex,false> cj; for(int i=0; i<alignedStart; ++i) { |