mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-18 22:08:53 +08:00
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:
committed by
Compute-Runtime-Automation
parent
dd253b804b
commit
c3e98e346a
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user