From: bangerth Date: Fri, 18 Jan 2013 04:49:10 +0000 (+0000) Subject: Fix indentation. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f87bb3c6fd75a19bb6f05a2eda3e3108ff500c55;p=dealii-svn.git Fix indentation. git-svn-id: https://svn.dealii.org/trunk@28118 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/sparse_mic.templates.h b/deal.II/include/deal.II/lac/sparse_mic.templates.h index 7fc1028b53..d4882c07fc 100644 --- a/deal.II/include/deal.II/lac/sparse_mic.templates.h +++ b/deal.II/include/deal.II/lac/sparse_mic.templates.h @@ -164,12 +164,12 @@ SparseMIC::get_rowsum (const unsigned int row) const Assert(this->m()==this->n(), ExcNotQuadratic()); const unsigned int *const first_after_diagonal = this->prebuilt_lower_bound[row]; - number rowsum = 0; + number rowsum = 0; for (typename SparseMatrix::const_iterator p = this->begin(row)+1; p != this->end(row); ++p) if (p->column() > p->row()) - rowsum += p->value(); + rowsum += p->value(); return rowsum; }