From 1e8d623340bb18c3d39d9bcd165e2250744a445a Mon Sep 17 00:00:00 2001 From: Giuseppe D'Angelo Date: Fri, 3 Jul 2020 12:19:08 +0200 Subject: QThread::create: remove the pre-C++17 codepaths As we require C++17 now. The configure-time test checking for future/async is left in for the moment being. Change-Id: Ifde39d420673f70a2277f5a645bfaad30935a381 Reviewed-by: Thiago Macieira Reviewed-by: Marc Mutz Reviewed-by: Edward Welbourne Reviewed-by: Qt CI Bot --- src/corelib/thread/qthread.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'src/corelib/thread/qthread.cpp') diff --git a/src/corelib/thread/qthread.cpp b/src/corelib/thread/qthread.cpp index 6e31ca4fbb7..b136a76aeb7 100644 --- a/src/corelib/thread/qthread.cpp +++ b/src/corelib/thread/qthread.cpp @@ -1078,29 +1078,6 @@ bool QThread::isInterruptionRequested() const \note the caller acquires ownership of the returned QThread instance. - \note this function is only available when using C++17. - - \warning do not call start() on the returned QThread instance more than once; - doing so will result in undefined behavior. - - \sa start() -*/ - -/*! - \fn template QThread *QThread::create(Function &&f) - \since 5.10 - - Creates a new QThread object that will execute the function \a f. - - The new thread is not started -- it must be started by an explicit call - to start(). This allows you to connect to its signals, move QObjects - to the thread, choose the new thread's priority and so on. The function - \a f will be called in the new thread. - - Returns the newly created QThread instance. - - \note the caller acquires ownership of the returned QThread instance. - \warning do not call start() on the returned QThread instance more than once; doing so will result in undefined behavior. -- cgit v1.2.3