Details
-
Bug
-
Resolution: Done
-
P2: Important
-
4.7.4
-
None
-
0ba0c374fe055623381e3795daa6743c5c995bbc
Description
There is a call for mappedReduced() which has a different order for the result types:
template <typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor>
QFuture<ResultType> mappedReduced(Iterator begin,
Iterator end,
MapFunctor map,
ReduceFunctor reduce,
ReduceOptions options = ReduceOptions(UnorderedReduce | SequentialReduce))
{
return startMappedReduced<ResultType, typename MapFunctor::result_type>
(begin, end, map, reduce, options);
}
Based on the other implementations, it should read:
return startMappedReduced<ResultType, typename MapFunctor::result_type>