summaryrefslogtreecommitdiffstats
path: root/src/animation/frontend/qchannel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/animation/frontend/qchannel.cpp')
-rw-r--r--src/animation/frontend/qchannel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/animation/frontend/qchannel.cpp b/src/animation/frontend/qchannel.cpp
index 3970ea8ab..8012f1b5c 100644
--- a/src/animation/frontend/qchannel.cpp
+++ b/src/animation/frontend/qchannel.cpp
@@ -136,22 +136,22 @@ void QChannel::clearChannelComponents()
d->m_channelComponents.clear();
}
-QChannel::const_iterator QChannel::begin() const Q_DECL_NOTHROW
+QChannel::const_iterator QChannel::begin() const noexcept
{
return d->m_channelComponents.cbegin();
}
-QChannel::const_iterator QChannel::end() const Q_DECL_NOTHROW
+QChannel::const_iterator QChannel::end() const noexcept
{
return d->m_channelComponents.cend();
}
-bool operator==(const QChannel &lhs, const QChannel &rhs) Q_DECL_NOTHROW
+bool operator==(const QChannel &lhs, const QChannel &rhs) noexcept
{
return lhs.d->m_name == rhs.d->m_name && lhs.d->m_channelComponents == rhs.d->m_channelComponents;
}
-bool operator!=(const QChannel &lhs, const QChannel &rhs) Q_DECL_NOTHROW
+bool operator!=(const QChannel &lhs, const QChannel &rhs) noexcept
{
return lhs.d->m_name != rhs.d->m_name || lhs.d->m_channelComponents != rhs.d->m_channelComponents;
}