From: David Wells Date: Sun, 21 Aug 2016 18:07:57 +0000 (-0400) Subject: Use ++k, not ++k, in a specific test. X-Git-Tag: v8.5.0-rc1~736^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2994%2Fhead;p=dealii.git Use ++k, not ++k, in a specific test. This test says that it tests the preincrement version of the operator. --- diff --git a/tests/bits/chunk_sparse_matrix_iterator_10.cc b/tests/bits/chunk_sparse_matrix_iterator_10.cc index 4063825d0f..bfc69768f6 100644 --- a/tests/bits/chunk_sparse_matrix_iterator_10.cc +++ b/tests/bits/chunk_sparse_matrix_iterator_10.cc @@ -42,7 +42,7 @@ void test (const unsigned int chunk_size) // and loop over the elements of it for (ChunkSparseMatrix::const_iterator k=A.begin(); - k!=A.end(); ++k) + k!=A.end(); k++) deallog << k->row() << ' ' << k->column() << ' ' << k->value() << std::endl; }