summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qtconcurrentmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/concurrent/qtconcurrentmap.h')
-rw-r--r--src/concurrent/qtconcurrentmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/concurrent/qtconcurrentmap.h b/src/concurrent/qtconcurrentmap.h
index bd959f44d3c..b2fd69cdd7b 100644
--- a/src/concurrent/qtconcurrentmap.h
+++ b/src/concurrent/qtconcurrentmap.h
@@ -433,9 +433,9 @@ ResultType blockingMappedReduced(QThreadPool *pool,
| SequentialReduce))
{
QFuture<ResultType> future =
- mappedReduced<ResultType>(pool, std::forward<Sequence>(sequence),
- std::forward<MapFunctor>(map),
- std::forward<ReduceFunctor>(reduce), options);
+ mappedReduced<ResultType, Sequence, MapFunctor, ReduceFunctor>(
+ pool, std::forward<Sequence>(sequence), std::forward<MapFunctor>(map),
+ std::forward<ReduceFunctor>(reduce), options);
return future.takeResult();
}