summaryrefslogtreecommitdiffstats
path: root/src/render/framegraph/dispatchcompute_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/framegraph/dispatchcompute_p.h')
-rw-r--r--src/render/framegraph/dispatchcompute_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/framegraph/dispatchcompute_p.h b/src/render/framegraph/dispatchcompute_p.h
index 7df8db1da..0fccd96f2 100644
--- a/src/render/framegraph/dispatchcompute_p.h
+++ b/src/render/framegraph/dispatchcompute_p.h
@@ -68,9 +68,9 @@ public:
void cleanup();
- inline int x() const Q_DECL_NOTHROW { return m_workGroups[0]; }
- inline int y() const Q_DECL_NOTHROW { return m_workGroups[1]; }
- inline int z() const Q_DECL_NOTHROW { return m_workGroups[2]; }
+ inline int x() const noexcept { return m_workGroups[0]; }
+ inline int y() const noexcept { return m_workGroups[1]; }
+ inline int z() const noexcept { return m_workGroups[2]; }
void syncFromFrontEnd(const Qt3DCore::QNode *frontEnd, bool firstTime) override;