summaryrefslogtreecommitdiffstats
path: root/src/corelib/ipc
diff options
context:
space:
mode:
authorDennis Oberst <dennis.oberst@qt.io>2023-07-12 16:12:04 +0200
committerDennis Oberst <dennis.oberst@qt.io>2023-07-13 17:24:27 +0200
commit56a776da406c710de3dbf8832b7c20add2e4ca3a (patch)
treed3938b2c0d43022b1cd6c12ede9a2cc2e90f8426 /src/corelib/ipc
parent3ad359d44f6b1cd94ba35d77be258212cd205fd5 (diff)
QNativeIpcKey: add missing noexcept to swap
Pick-to: 6.6 Change-Id: I57d5f22823597a56d93fc2f8f30b538684ce77ad Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Marc Mutz <marc.mutz@qt.io>
Diffstat (limited to 'src/corelib/ipc')
-rw-r--r--src/corelib/ipc/qtipccommon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/ipc/qtipccommon.h b/src/corelib/ipc/qtipccommon.h
index b58de9ed0b8..c14c6dc7872 100644
--- a/src/corelib/ipc/qtipccommon.h
+++ b/src/corelib/ipc/qtipccommon.h
@@ -79,7 +79,7 @@ public:
}
QT_MOVE_ASSIGNMENT_OPERATOR_IMPL_VIA_PURE_SWAP(QNativeIpcKey)
- void swap(QNativeIpcKey &other)
+ void swap(QNativeIpcKey &other) noexcept
{
std::swap(d, other.d);
key.swap(other.key);