refactor: mark host functions classes as final

Related-To: NEO-14577
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2025-11-05 00:48:44 +00:00
committed by Compute-Runtime-Automation
parent dd253b804b
commit c3e98e346a
3 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@
namespace NEO {
class HostFunctionWorkerAtomic : public IHostFunctionWorker {
class HostFunctionWorkerAtomic final : public IHostFunctionWorker {
public:
HostFunctionWorkerAtomic(bool skipHostFunctionExecution,
const std::function<void(GraphicsAllocation &)> &downloadAllocationImpl,

View File

@@ -15,7 +15,7 @@
namespace NEO {
class HostFunctionWorkerCountingSemaphore : public IHostFunctionWorker {
class HostFunctionWorkerCountingSemaphore final : public IHostFunctionWorker {
public:
HostFunctionWorkerCountingSemaphore(bool skipHostFunctionExecution,
const std::function<void(GraphicsAllocation &)> &downloadAllocationImpl,

View File

@@ -14,7 +14,7 @@
namespace NEO {
class HostFunctionWorkerCV : public IHostFunctionWorker {
class HostFunctionWorkerCV final : public IHostFunctionWorker {
public:
HostFunctionWorkerCV(bool skipHostFunctionExecution,
const std::function<void(GraphicsAllocation &)> &downloadAllocationImpl,