From a19235f0893efb0b50ff59a6b81eb2ce91e8cd28 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sat, 9 May 2020 07:51:52 +0200 Subject: [PATCH] Qualify a call to parallel::apply_to_subrange --- include/deal.II/matrix_free/matrix_free.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/matrix_free/matrix_free.h b/include/deal.II/matrix_free/matrix_free.h index 3f9d62ebf8..37c972da1c 100644 --- a/include/deal.II/matrix_free/matrix_free.h +++ b/include/deal.II/matrix_free/matrix_free.h @@ -4571,7 +4571,7 @@ namespace internal if (range_index == numbers::invalid_unsigned_int) { // Case with threaded loop -> currently no overlap implemented - parallel::apply_to_subranges( + dealii::parallel::apply_to_subranges( 0U, dof_info.vector_partitioner->local_size(), operation_before_loop, @@ -4601,7 +4601,7 @@ namespace internal if (range_index == numbers::invalid_unsigned_int) { // Case with threaded loop -> currently no overlap implemented - parallel::apply_to_subranges( + dealii::parallel::apply_to_subranges( 0U, dof_info.vector_partitioner->local_size(), operation_after_loop, -- 2.39.5