summaryrefslogtreecommitdiffstats
path: root/src/animation/frontend/qchannelcomponent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/animation/frontend/qchannelcomponent.cpp')
-rw-r--r--src/animation/frontend/qchannelcomponent.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/animation/frontend/qchannelcomponent.cpp b/src/animation/frontend/qchannelcomponent.cpp
index e26752aa6..755ed6294 100644
--- a/src/animation/frontend/qchannelcomponent.cpp
+++ b/src/animation/frontend/qchannelcomponent.cpp
@@ -115,23 +115,23 @@ void QChannelComponent::clearKeyFrames()
d->m_keyFrames.clear();
}
-QChannelComponent::const_iterator QChannelComponent::begin() const Q_DECL_NOTHROW
+QChannelComponent::const_iterator QChannelComponent::begin() const noexcept
{
return d->m_keyFrames.cbegin();
}
-QChannelComponent::const_iterator QChannelComponent::end() const Q_DECL_NOTHROW
+QChannelComponent::const_iterator QChannelComponent::end() const noexcept
{
return d->m_keyFrames.cend();
}
-bool operator==(const QChannelComponent &lhs, const QChannelComponent &rhs) Q_DECL_NOTHROW
+bool operator==(const QChannelComponent &lhs, const QChannelComponent &rhs) noexcept
{
return lhs.d->m_name == rhs.d->m_name &&
lhs.d->m_keyFrames == rhs.d->m_keyFrames;
}
-bool operator!=(const QChannelComponent &lhs, const QChannelComponent &rhs) Q_DECL_NOTHROW
+bool operator!=(const QChannelComponent &lhs, const QChannelComponent &rhs) noexcept
{
return lhs.d->m_name != rhs.d->m_name ||
lhs.d->m_keyFrames != rhs.d->m_keyFrames;