From 137b0554d795392e987128580ac6864a88f37053 Mon Sep 17 00:00:00 2001 From: Fabian Sauter Date: Fri, 20 May 2022 10:03:47 +0200 Subject: [PATCH] Updated combined header Signed-off-by: Fabian Sauter --- single_include/kompute/Kompute.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/single_include/kompute/Kompute.hpp b/single_include/kompute/Kompute.hpp index fa51631f7..e725b8bbd 100644 --- a/single_include/kompute/Kompute.hpp +++ b/single_include/kompute/Kompute.hpp @@ -2069,15 +2069,15 @@ class Sequence : public std::enable_shared_from_this * * @return Boolean stating if recording ongoing. */ - bool isRecording(); + [[nodiscard]] bool isRecording() const; /** * Returns true if the sequence has been initialised, and it's based on the - * GPU resources being refrenced. + * GPU resources being referenced. * * @return Boolean stating if is initialized */ - bool isInit(); + [[nodiscard]] bool isInit() const; /** * Clears command buffer and triggers re-record of all the current @@ -2092,7 +2092,7 @@ class Sequence : public std::enable_shared_from_this * * @return Boolean stating if currently running. */ - bool isRunning(); + [[nodiscard]] bool isRunning() const; /** * Destroys and frees the GPU resources which include the buffer and memory