diff options
| author | Mårten Nordheim <marten.nordheim@qt.io> | 2022-10-13 15:23:39 +0200 |
|---|---|---|
| committer | Mårten Nordheim <marten.nordheim@qt.io> | 2022-10-14 17:18:52 +0200 |
| commit | 80762373eab050853ea61d7336d4d14865fd1d8e (patch) | |
| tree | 6cd90f07be0bcdb457fbc77bee6f09f633b269e8 /src/corelib/thread/qmutex.h | |
| parent | f3bcf922165941411e855d8160d3c02d943351f2 (diff) | |
Update QMutex-noexceptedness
Platforms where we use futex do not allocate.
Windows gained support in 6.2, but the noexcept macro was missed.
Amends 91f6460aff0a6ab5142f16d5f4fc1f559ca1c325
Change-Id: I76da48fbaac5749fdec4ec76de6a0ff891b78442
Reviewed-by: Marc Mutz <marc.mutz@qt.io>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/thread/qmutex.h')
| -rw-r--r-- | src/corelib/thread/qmutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/thread/qmutex.h b/src/corelib/thread/qmutex.h index ce7b5275ac2..ab531ef70e9 100644 --- a/src/corelib/thread/qmutex.h +++ b/src/corelib/thread/qmutex.h @@ -19,7 +19,7 @@ QT_BEGIN_NAMESPACE #if QT_CONFIG(thread) || defined(Q_CLANG_QDOC) -#ifdef Q_OS_LINUX +#if defined(Q_OS_LINUX) || defined(Q_OS_WIN) // these platforms use futex # define QT_MUTEX_LOCK_NOEXCEPT noexcept #else # define QT_MUTEX_LOCK_NOEXCEPT |
