summaryrefslogtreecommitdiffstats
path: root/src/concurrent
diff options
context:
space:
mode:
Diffstat (limited to 'src/concurrent')
-rw-r--r--src/concurrent/qtconcurrentfunctionwrappers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/concurrent/qtconcurrentfunctionwrappers.h b/src/concurrent/qtconcurrentfunctionwrappers.h
index c8aab34b87..194d020fb2 100644
--- a/src/concurrent/qtconcurrentfunctionwrappers.h
+++ b/src/concurrent/qtconcurrentfunctionwrappers.h
@@ -156,10 +156,10 @@ struct MapSequenceResultType<QStringList, MapFunctor>
#ifndef QT_NO_TEMPLATE_TEMPLATE_PARAMETERS
-template <template <typename> class InputSequence, typename MapFunctor, typename T>
-struct MapSequenceResultType<InputSequence<T>, MapFunctor>
+template <template <typename...> class InputSequence, typename MapFunctor, typename ...T>
+struct MapSequenceResultType<InputSequence<T...>, MapFunctor>
{
- typedef InputSequence<QtPrivate::MapResultType<InputSequence<T>, MapFunctor>> ResultType;
+ typedef InputSequence<QtPrivate::MapResultType<InputSequence<T...>, MapFunctor>> ResultType;
};
#endif // QT_NO_TEMPLATE_TEMPLATE_PARAMETER