From: wolf Date: Tue, 3 Feb 2004 00:56:34 +0000 (+0000) Subject: More two-stage name lookup problems. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=957caa93eceed746330f501c9b118169949b3857;p=dealii-svn.git More two-stage name lookup problems. git-svn-id: https://svn.dealii.org/trunk@8383 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/full_matrix.h b/deal.II/lac/include/lac/full_matrix.h index 2b46aa2ae7..71cb8d0295 100644 --- a/deal.II/lac/include/lac/full_matrix.h +++ b/deal.II/lac/include/lac/full_matrix.h @@ -929,7 +929,7 @@ FullMatrix::copy_from (const MATRIX& M) const typename MATRIX::const_iterator end = M.end(); for (typename MATRIX::const_iterator entry = M.begin(); entry != end; ++entry) - el(entry->row(), entry->column()) = entry->value(); + this->el(entry->row(), entry->column()) = entry->value(); } //----------------------------------------------------------------------//