From 7ce0922f459d6b798cf7f64a29be9183f165557f Mon Sep 17 00:00:00 2001 From: deal Date: Thu, 24 Mar 2005 20:01:58 +0000 Subject: [PATCH] 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 --- deal.II/lac/source/lapack_full_matrix.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 & -- 2.39.5