From: Martin Kronbichler Date: Sun, 10 May 2020 05:59:58 +0000 (+0200) Subject: Make clang-tidy happy with parallel::apply_to_subranges X-Git-Tag: v9.2.0-rc1~56^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e13f8334f6e80f8928c78225fcd96e796bc4d4ed;p=dealii.git Make clang-tidy happy with parallel::apply_to_subranges --- 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) {