From 2141b1420ce32c8dba4a4faf1538ae2ddd37359f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 7 Nov 2024 14:51:39 -0700 Subject: [PATCH] Fix types in parallel.h for TBB. --- include/deal.II/base/parallel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/parallel.h b/include/deal.II/base/parallel.h index 8e38e803ca..06f7c511fd 100644 --- a/include/deal.II/base/parallel.h +++ b/include/deal.II/base/parallel.h @@ -249,7 +249,7 @@ namespace parallel // warnings about unused arguments (void)grainsize; - for (InputIterator in1 = begin_in1; in1 != end_in1;) + for (InputIterator1 in1 = begin_in1; in1 != end_in1;) *out++ = function(*in1++, *in2++); #else using Iterators = @@ -332,7 +332,7 @@ namespace parallel // warnings about unused arguments (void)grainsize; - for (InputIterator in1 = begin_in1; in1 != end_in1;) + for (InputIterator1 in1 = begin_in1; in1 != end_in1;) *out++ = function(*in1++, *in2++, *in3++); #else using Iterators = std:: -- 2.39.5