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.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/concurrent/qtconcurrentfunctionwrappers.h b/src/concurrent/qtconcurrentfunctionwrappers.h
index 1c882d3f194..08966115d6d 100644
--- a/src/concurrent/qtconcurrentfunctionwrappers.h
+++ b/src/concurrent/qtconcurrentfunctionwrappers.h
@@ -129,7 +129,6 @@ struct ReduceResultType<R(*)(A...)>
using ResultType = typename std::tuple_element<0, std::tuple<A...>>::type;
};
-#if defined(__cpp_noexcept_function_type) && __cpp_noexcept_function_type >= 201510
template <class U, class V>
struct ReduceResultType<void(*)(U&,V) noexcept>
{
@@ -141,7 +140,6 @@ struct ReduceResultType<T(C::*)(U) noexcept>
{
using ResultType = C;
};
-#endif
template<class T, class Enable = void>
struct hasCallOperator : std::false_type