From 8e05f9cfa1538d76a9d3e01e08ba565bd581806a Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 4 Dec 2009 23:17:14 +0100 Subject: add a DenseBase class for MAtrixBase and ArrayBase and more code factorisation --- Eigen/src/Jacobi/Jacobi.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Eigen/src/Jacobi') 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 template inline void MatrixBase::applyOnTheLeft(int p, int q, const PlanarRotation& 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 template inline void MatrixBase::applyOnTheRight(int p, int q, const PlanarRotation& 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()); } -- cgit v1.2.3