mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
fix: Explicitly delete unused functions
Explicitly delete unused functions of CheckIfExitCalled and VfManagementHandleContext. Comply with the rule of five. Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
43c199185a
commit
7f412c77a2
@@ -34,6 +34,10 @@ class VfManagement : _zes_vf_handle_t {
|
||||
struct VfManagementHandleContext {
|
||||
VfManagementHandleContext(OsSysman *pOsSysman) : pOsSysman(pOsSysman){};
|
||||
~VfManagementHandleContext();
|
||||
VfManagementHandleContext(VfManagementHandleContext &&other) noexcept = delete;
|
||||
VfManagementHandleContext(const VfManagementHandleContext &other) = delete;
|
||||
VfManagementHandleContext &operator=(VfManagementHandleContext &&other) noexcept = delete;
|
||||
VfManagementHandleContext &operator=(const VfManagementHandleContext &other) = delete;
|
||||
|
||||
ze_result_t init();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user