From 47a65df218cd8c540e21f856f2b8c0b8e00c37af Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 25 Mar 2002 09:55:08 +0000 Subject: [PATCH] Avoid the use of Koenig lookup. git-svn-id: https://svn.dealii.org/trunk@5607 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/sparse_vanka.templates.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/lac/include/lac/sparse_vanka.templates.h b/deal.II/lac/include/lac/sparse_vanka.templates.h index 69b61d658f..10b2ce093a 100644 --- a/deal.II/lac/include/lac/sparse_vanka.templates.h +++ b/deal.II/lac/include/lac/sparse_vanka.templates.h @@ -411,9 +411,9 @@ SparseBlockVanka::compute_dof_masks (const SparseMatrix &M, { Assert (n_blocks > 0, ExcInternalError()); - const unsigned int n_inverses = count (selected.begin(), - selected.end(), - true); + const unsigned int n_inverses = std::count (selected.begin(), + selected.end(), + true); const unsigned int n_inverses_per_block = std::max(n_inverses / n_blocks, 1U); -- 2.39.5