From: deal Date: Thu, 24 Mar 2005 20:01:58 +0000 (+0000) Subject: Add a few this-> here and there. Fix one other bug as well. X-Git-Tag: v8.0.0~14310 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ce0922f459d6b798cf7f64a29be9183f165557f;p=dealii.git Add a few this-> here and there. Fix one other bug as well. git-svn-id: https://svn.dealii.org/trunk@10237 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/lapack_full_matrix.cc b/deal.II/lac/source/lapack_full_matrix.cc index 4d12f4e84c..34d900dbd2 100644 --- a/deal.II/lac/source/lapack_full_matrix.cc +++ b/deal.II/lac/source/lapack_full_matrix.cc @@ -56,10 +56,10 @@ template LAPACKFullMatrix & LAPACKFullMatrix::operator = (const FullMatrix& M) { - Assert (n_rows() == M.m(), ExcDimensionMismatch(n_rows(), M.m())); - Assert (n_cols() == M.n(), ExcDimensionMismatch(n_cols(), M.n())); - for (unsigned int i=0;in_rows() == M.m(), ExcDimensionMismatch(this->n_rows(), M.m())); + Assert (this->n_cols() == M.n(), ExcDimensionMismatch(this->n_cols(), M.n())); + for (unsigned int i=0;in_rows();++i) + for (unsigned int j=0;jn_cols();++j) (*this)(i,j) = M(i,j); return *this; } @@ -173,7 +173,7 @@ LAPACKFullMatrix::Tvmult_add ( } -template LAPACKFullMatrix; +template class LAPACKFullMatrix; template LAPACKFullMatrix & LAPACKFullMatrix::operator = (const FullMatrix& M); template LAPACKFullMatrix &