From 2122c20d0e62bb9483d4a8c118af262f439ee85f Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Tue, 19 Mar 2019 14:10:02 -0600 Subject: [PATCH] fix tbb range size type --- include/deal.II/lac/vector_operations_internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/lac/vector_operations_internal.h b/include/deal.II/lac/vector_operations_internal.h index bd13406faa..95ea6bc18c 100644 --- a/include/deal.II/lac/vector_operations_internal.h +++ b/include/deal.II/lac/vector_operations_internal.h @@ -149,7 +149,7 @@ namespace internal } void - operator()(const tbb::blocked_range &range) const + operator()(const tbb::blocked_range &range) const { const size_type r_begin = start + range.begin() * chunk_size; const size_type r_end = std::min(start + range.end() * chunk_size, end); @@ -1317,7 +1317,7 @@ namespace internal * [range.begin(), range.end()). */ void - operator()(const tbb::blocked_range &range) const + operator()(const tbb::blocked_range &range) const { for (size_type i = range.begin(); i < range.end(); ++i) accumulate_recursive(op, -- 2.39.5