Remove an outdated compiler check

Change-Id: I3af019b65835b2f82161d6f1c24feb0523a32c11
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
This commit is contained in:
Sona Kurazyan 2020-09-16 14:07:59 +02:00
parent e8843b5610
commit 1c60f6bc5e

View File

@ -80,7 +80,6 @@ public:
{ {
} }
#if !defined(Q_CC_XLC)
template<typename U, typename V = T, typename = QtPrivate::EnableForVoid<V>> template<typename U, typename V = T, typename = QtPrivate::EnableForVoid<V>>
QFuture(const QFuture<U> &other) : d(other.d) QFuture(const QFuture<U> &other) : d(other.d)
{ {
@ -92,7 +91,6 @@ public:
d = other.d; d = other.d;
return *this; return *this;
} }
#endif
#if defined(Q_CLANG_QDOC) #if defined(Q_CLANG_QDOC)
~QFuture() { } ~QFuture() { }