From 8cab856158495ffa8cd774ea83517fe99e253927 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sun, 21 Aug 2016 14:07:57 -0400 Subject: [PATCH] Use ++k, not ++k, in a specific test. This test says that it tests the preincrement version of the operator. --- tests/bits/chunk_sparse_matrix_iterator_10.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5