aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Jacobi/Jacobi.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Jacobi/Jacobi.h')
-rw-r--r--Eigen/src/Jacobi/Jacobi.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Jacobi/Jacobi.h b/Eigen/src/Jacobi/Jacobi.h
index eeb81c178..727c97583 100644
--- a/Eigen/src/Jacobi/Jacobi.h
+++ b/Eigen/src/Jacobi/Jacobi.h
@@ -279,8 +279,8 @@ template<typename Derived>
template<typename OtherScalar>
inline void MatrixBase<Derived>::applyOnTheLeft(int p, int q, const PlanarRotation<OtherScalar>& j)
{
- RowXpr x(row(p));
- RowXpr y(row(q));
+ RowXpr x(this->row(p));
+ RowXpr y(this->row(q));
ei_apply_rotation_in_the_plane(x, y, j);
}
@@ -294,8 +294,8 @@ template<typename Derived>
template<typename OtherScalar>
inline void MatrixBase<Derived>::applyOnTheRight(int p, int q, const PlanarRotation<OtherScalar>& j)
{
- ColXpr x(col(p));
- ColXpr y(col(q));
+ ColXpr x(this->col(p));
+ ColXpr y(this->col(q));
ei_apply_rotation_in_the_plane(x, y, j.transpose());
}