From fd55fe6d64aa505ddc3ffb3f187a9ad6f267eecd Mon Sep 17 00:00:00 2001 From: guido Date: Wed, 11 Dec 2002 08:58:46 +0000 Subject: [PATCH] this-> added git-svn-id: https://svn.dealii.org/trunk@6808 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/sparse_matrix.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/deal.II/lac/include/lac/sparse_matrix.h b/deal.II/lac/include/lac/sparse_matrix.h index 29c71926bc..19b58f9d64 100644 --- a/deal.II/lac/include/lac/sparse_matrix.h +++ b/deal.II/lac/include/lac/sparse_matrix.h @@ -1387,13 +1387,13 @@ inline typename SparseMatrix::const_iterator& SparseMatrix::const_iterator::operator++ () { - Assert (a_row < matrix->m(), ExcIteratorPastEnd()); + Assert (this->a_row < matrix->m(), ExcIteratorPastEnd()); - ++a_index; - if (a_index >= matrix->get_sparsity_pattern().row_length(a_row)) + ++this->a_index; + if (this->a_index >= this->matrix->get_sparsity_pattern().row_length(this->a_row)) { - a_index = 0; - a_row++; + this->a_index = 0; + this->a_row++; } return *this; } @@ -1423,7 +1423,7 @@ bool SparseMatrix::const_iterator::operator == ( const const_iterator& other) const { - return (row() == other->row() && index() == other->index()); + return (this->row() == other->row() && this->index() == other->index()); } @@ -1443,8 +1443,8 @@ bool SparseMatrix::const_iterator::operator < ( const const_iterator& other) const { - return (row() < other->row() || - (row() == other->row() && index() < other->index())); + return (this->row() < other->row() || + (this->row() == other->row() && this->index() < other->index())); } -- 2.39.5