summaryrefslogtreecommitdiffstats
path: root/src/render/backend/computecommand_p.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-30 16:07:58 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-11-02 09:01:31 +0100
commit1086a29bfdf5d78afbb95ac3b710e7892981aac1 (patch)
tree57d27ac3fe0d4297a398bb7966747dd93e95afd1 /src/render/backend/computecommand_p.h
parent9dd441c4297296d8efda629d0929aaad6d278b51 (diff)
Replace old Q_DECL statements with modern C++
Since we have long depended on C++11 now, all of these can go. Change-Id: I8808af2cd5ce192864c636b521dadd7de189563b Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/backend/computecommand_p.h')
-rw-r--r--src/render/backend/computecommand_p.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/render/backend/computecommand_p.h b/src/render/backend/computecommand_p.h
index 00e238474..22d643f05 100644
--- a/src/render/backend/computecommand_p.h
+++ b/src/render/backend/computecommand_p.h
@@ -71,11 +71,11 @@ public:
void cleanup();
void syncFromFrontEnd(const Qt3DCore::QNode *frontEnd, bool firstTime) override;
- 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 frameCount() const Q_DECL_NOTHROW { return m_frameCount; }
- inline QComputeCommand::RunType runType() const Q_DECL_NOTHROW { return m_runType; }
+ 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]; }
+ inline int frameCount() const noexcept { return m_frameCount; }
+ inline QComputeCommand::RunType runType() const noexcept { return m_runType; }
// Called from a job
void updateFrameCount();