summaryrefslogtreecommitdiffstats
path: root/src/render/jobs/renderviewjobutils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/jobs/renderviewjobutils.cpp')
-rw-r--r--src/render/jobs/renderviewjobutils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/jobs/renderviewjobutils.cpp b/src/render/jobs/renderviewjobutils.cpp
index 11c7cbd98..3677bf4cf 100644
--- a/src/render/jobs/renderviewjobutils.cpp
+++ b/src/render/jobs/renderviewjobutils.cpp
@@ -215,12 +215,12 @@ ParameterInfo::ParameterInfo(const int nameId, const HParameter &handle)
, handle(handle)
{}
-bool ParameterInfo::operator<(const ParameterInfo &other) const Q_DECL_NOEXCEPT
+bool ParameterInfo::operator<(const ParameterInfo &other) const noexcept
{
return nameId < other.nameId;
}
-bool ParameterInfo::operator<(const int otherNameId) const Q_DECL_NOEXCEPT
+bool ParameterInfo::operator<(const int otherNameId) const noexcept
{
return nameId < otherNameId;
}