summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2020-09-16 14:07:59 +0200
committerSona Kurazyan <sona.kurazyan@qt.io>2020-09-18 06:21:14 +0200
commit1c60f6bc5e9539a297e9fe6ee583fa7b882f190e (patch)
treeb73b2662138908613655219a5dd21c5e885a132f /src
parente8843b56103c5f296fb8dfe8684071ea60ee20da (diff)
Remove an outdated compiler check
Change-Id: I3af019b65835b2f82161d6f1c24feb0523a32c11 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/thread/qfuture.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/corelib/thread/qfuture.h b/src/corelib/thread/qfuture.h
index dc8e0d1d2d..3201f46710 100644
--- a/src/corelib/thread/qfuture.h
+++ b/src/corelib/thread/qfuture.h
@@ -80,7 +80,6 @@ public:
{
}
-#if !defined(Q_CC_XLC)
template<typename U, typename V = T, typename = QtPrivate::EnableForVoid<V>>
QFuture(const QFuture<U> &other) : d(other.d)
{
@@ -92,7 +91,6 @@ public:
d = other.d;
return *this;
}
-#endif
#if defined(Q_CLANG_QDOC)
~QFuture() { }