MapReduce: Fix documentation

Change-Id: Ic4d84328e7b88a666f7984ae7ec1f6bf55ef58db
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Eike Ziller
2016-05-17 09:03:24 +02:00
committed by Eike Ziller
parent ecd8e764dd
commit 1b92b38e74

View File

@@ -412,9 +412,9 @@ mapReduce(ForwardIterator begin, ForwardIterator end, InitFunction &&init, MapFu
or
MapResultType MapFunction(const ItempType&)
void ReduceFunction(QFutureInterface<ReduceResultType>&, StateType&, const ItemType&)
void ReduceFunction(QFutureInterface<ReduceResultType>&, StateType&, const MapResultType&)
or
ReduceResultType ReduceFunction(StateType&, const ItemType&)
ReduceResultType ReduceFunction(StateType&, const MapResultType&)
void CleanUpFunction(QFutureInterface<ReduceResultType>&, StateType&)
or