summaryrefslogtreecommitdiff
path: root/src/corelib/concurrent
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@nokia.com>2011-04-26 14:01:18 +0200
committerLiang Qi <liang.qi@nokia.com>2011-05-02 14:57:27 +0200
commitc12ed14fb38ae77be194e19a27545190aded830b (patch)
tree9600ff4e4a035b31f115025e2a39113b173d0820 /src/corelib/concurrent
parent7307d712e10783b57c4c95c8390a9455b69f473a (diff)
downloadqt4-tools-c12ed14fb38ae77be194e19a27545190aded830b.tar.gz
Get rid of "typename, typename" for TEMPLATE_TEMPLATE_PARAMETERS.
Because Qt doesn't support that feature before.
Diffstat (limited to 'src/corelib/concurrent')
-rw-r--r--src/corelib/concurrent/qtconcurrentfunctionwrappers.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/corelib/concurrent/qtconcurrentfunctionwrappers.h b/src/corelib/concurrent/qtconcurrentfunctionwrappers.h
index fa675eb336..98506a597a 100644
--- a/src/corelib/concurrent/qtconcurrentfunctionwrappers.h
+++ b/src/corelib/concurrent/qtconcurrentfunctionwrappers.h
@@ -260,24 +260,6 @@ struct MapResultType<InputSequence<T>, U(C::*)() const>
typedef InputSequence<U> ResultType;
};
-template <template <typename, typename> class InputSequence, typename MapFunctor, typename T, typename T2>
-struct MapResultType<InputSequence<T, T2>, MapFunctor>
-{
- typedef InputSequence<typename LazyResultType<MapFunctor>::Type, T2> ResultType;
-};
-
-template <template <typename, typename> class InputSequence, class T, typename T2, class U, class V>
-struct MapResultType<InputSequence<T, T2>, U (*)(V)>
-{
- typedef InputSequence<U, T2> ResultType;
-};
-
-template <template <typename, typename> class InputSequence, class T, typename T2, class U, class C>
-struct MapResultType<InputSequence<T, T2>, U(C::*)() const>
-{
- typedef InputSequence<U, T2> ResultType;
-};
-
#endif // QT_NO_TEMPLATE_TEMPLATE_PARAMETER
template <class MapFunctor>