From: deal Date: Thu, 24 Mar 2005 20:00:36 +0000 (+0000) Subject: Add a few this-> here and there. X-Git-Tag: v8.0.0~14311 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1867c5cb8a3aa0382fa479ae76538e04b89107f8;p=dealii.git Add a few this-> here and there. git-svn-id: https://svn.dealii.org/trunk@10236 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/lapack_full_matrix.h b/deal.II/lac/include/lac/lapack_full_matrix.h index 472d15aa3e..7c2ae6d772 100644 --- a/deal.II/lac/include/lac/lapack_full_matrix.h +++ b/deal.II/lac/include/lac/lapack_full_matrix.h @@ -230,10 +230,10 @@ LAPACKFullMatrix::fill ( const unsigned int src_offset_i, const unsigned int src_offset_j) { - const unsigned int endrow = src_offset_i + m(); - const unsigned int endcol = src_offset_j + n(); + const unsigned int endrow = src_offset_i + this->m(); + const unsigned int endcol = src_offset_j + this->n(); - for (unsigned int i=0;im();++i) { const typename MATRIX::const_iterator end = M.end(src_offset_i+i); for (typename MATRIX::const_iterator entry = M.begin(src_offset_i+i);