From e13f8334f6e80f8928c78225fcd96e796bc4d4ed Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sun, 10 May 2020 07:59:58 +0200 Subject: [PATCH] Make clang-tidy happy with parallel::apply_to_subranges --- include/deal.II/matrix_free/mapping_info.templates.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/matrix_free/mapping_info.templates.h b/include/deal.II/matrix_free/mapping_info.templates.h index 7cabf8e97f..e119fe2ea9 100644 --- a/include/deal.II/matrix_free/mapping_info.templates.h +++ b/include/deal.II/matrix_free/mapping_info.templates.h @@ -2660,7 +2660,7 @@ namespace internal // step 4b: go through the cells and compute the information using // similar evaluators as for the matrix-free integrals - parallel::apply_to_subranges( + dealii::parallel::apply_to_subranges( 0U, cell_type.size(), [&](const unsigned int begin, const unsigned int end) { @@ -2788,7 +2788,7 @@ namespace internal // step 6b: go through the faces and compute the information using // similar evaluators as for the matrix-free face integrals - parallel::apply_to_subranges( + dealii::parallel::apply_to_subranges( 0U, face_type.size(), [&](const unsigned int begin, const unsigned int end) { @@ -2817,7 +2817,7 @@ namespace internal if (face_data[my_q].descriptor[0].n_q_points > face_data[quad_with_most_points].descriptor[0].n_q_points) quad_with_most_points = my_q; - parallel::apply_to_subranges( + dealii::parallel::apply_to_subranges( 0U, face_type.size(), [&](const unsigned int begin, const unsigned int end) { -- 2.39.5