From 1c60f6bc5e9539a297e9fe6ee583fa7b882f190e Mon Sep 17 00:00:00 2001 From: Sona Kurazyan Date: Wed, 16 Sep 2020 14:07:59 +0200 Subject: [PATCH] Remove an outdated compiler check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I3af019b65835b2f82161d6f1c24feb0523a32c11 Reviewed-by: MÃ¥rten Nordheim --- src/corelib/thread/qfuture.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/corelib/thread/qfuture.h b/src/corelib/thread/qfuture.h index dc8e0d1d2d2..3201f46710b 100644 --- a/src/corelib/thread/qfuture.h +++ b/src/corelib/thread/qfuture.h @@ -80,7 +80,6 @@ public: { } -#if !defined(Q_CC_XLC) template> QFuture(const QFuture &other) : d(other.d) { @@ -92,7 +91,6 @@ public: d = other.d; return *this; } -#endif #if defined(Q_CLANG_QDOC) ~QFuture() { }