summaryrefslogtreecommitdiffstats
path: root/src/concurrent/qtconcurrentfunctionwrappers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/concurrent/qtconcurrentfunctionwrappers.h')
-rw-r--r--src/concurrent/qtconcurrentfunctionwrappers.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/concurrent/qtconcurrentfunctionwrappers.h b/src/concurrent/qtconcurrentfunctionwrappers.h
index be95416759..c8aab34b87 100644
--- a/src/concurrent/qtconcurrentfunctionwrappers.h
+++ b/src/concurrent/qtconcurrentfunctionwrappers.h
@@ -108,19 +108,19 @@ struct ReduceResultType;
template <class U, class V>
struct ReduceResultType<void(*)(U&,V)>
{
- typedef U ResultType;
+ using ResultType = U;
};
template <class T, class C, class U>
struct ReduceResultType<T(C::*)(U)>
{
- typedef C ResultType;
+ using ResultType = C;
};
template <class U, class V>
struct ReduceResultType<std::function<void(U&, V)>>
{
- typedef U ResultType;
+ using ResultType = U;
};
template <typename R, typename ...A>
@@ -133,13 +133,13 @@ struct ReduceResultType<R(*)(A...)>
template <class U, class V>
struct ReduceResultType<void(*)(U&,V) noexcept>
{
- typedef U ResultType;
+ using ResultType = U;
};
template <class T, class C, class U>
struct ReduceResultType<T(C::*)(U) noexcept>
{
- typedef C ResultType;
+ using ResultType = C;
};
#endif