From: Wolfgang Bangerth Date: Wed, 22 Apr 2015 12:12:19 +0000 (-0500) Subject: Avoid using the deprecated row_iterator types of sparsity patterns. Replace them... X-Git-Tag: v8.3.0-rc1~211^2~5 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0eca640553112b1b91101c6c0065c48caef265ff;p=dealii.git Avoid using the deprecated row_iterator types of sparsity patterns. Replace them with uses of regular iterators. --- diff --git a/source/lac/sparsity_pattern.cc b/source/lac/sparsity_pattern.cc index dcfed47bda..7b5d3f8c9e 100644 --- a/source/lac/sparsity_pattern.cc +++ b/source/lac/sparsity_pattern.cc @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2000 - 2014 by the deal.II authors +// Copyright (C) 2000 - 2015 by the deal.II authors // // This file is part of the deal.II library. // @@ -505,12 +505,12 @@ SparsityPattern::copy_from (const DSP &dsp) for (size_type row = 0; rowcolumn(); if ((col!=row) || !do_diag_optimize) *cols++ = col; }