From: guido Date: Tue, 19 Apr 2005 12:59:12 +0000 (+0000) Subject: missing this-> X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=146b90958cca1cf1be5bbc7f79a1a241d977d2db;p=dealii-svn.git missing this-> git-svn-id: https://svn.dealii.org/trunk@10528 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 8565a5072e..71b9641e90 100644 --- a/deal.II/lac/source/lapack_full_matrix.cc +++ b/deal.II/lac/source/lapack_full_matrix.cc @@ -258,9 +258,9 @@ LAPACKFullMatrix::print_formatted ( width = precision+2; } - for (unsigned int i=0; in_rows(); ++i) { - for (unsigned int j=0; jn_cols(); ++j) if (std::fabs(this->el(i,j)) > threshold) out << std::setw(width) << this->el(i,j) * denominator << ' ';