diff options
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/concurrent/qtconcurrentfunctionwrappers.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/concurrent/qtconcurrentfunctionwrappers.h b/src/corelib/concurrent/qtconcurrentfunctionwrappers.h index 5652609..4c4714f 100644 --- a/src/corelib/concurrent/qtconcurrentfunctionwrappers.h +++ b/src/corelib/concurrent/qtconcurrentfunctionwrappers.h @@ -216,14 +216,14 @@ struct MapResultType typedef typename MapFunctor::result_type ResultType; }; -template <class InputSequence, class U, class V> -struct MapResultType<InputSequence, U (*)(V)> +template <class U, class V> +struct MapResultType<void, U (*)(V)> { typedef U ResultType; }; -template <class InputSequence, class T, class C> -struct MapResultType<InputSequence, T(C::*)() const> +template <class T, class C> +struct MapResultType<void, T(C::*)() const> { typedef T ResultType; }; |