Skip to content

Commit

Permalink
Fix compiling without TBB and Taskflow
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Feb 10, 2025
1 parent 94a7da5 commit c743111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/deal.II/base/parallel.h
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ namespace parallel
// warnings about unused arguments
(void)grainsize;

for (OutputIterator1 in1 = begin_in1; in1 != end_in1;)
for (OutputIterator in1 = begin_in1; in1 != end_in1;)
*out++ = function(*in1++, *in2++, *in3++);
#endif
}
Expand Down

0 comments on commit c743111

Please sign in to comment.