Add virtual destructor to L0::Driver
Change-Id: Iaeebe3e45a172daa028111f6dd1d741ca6a24969 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
parent
02f2f22045
commit
91dc953e1c
|
@ -16,6 +16,7 @@ struct Driver {
|
|||
virtual ze_result_t driverInit(_ze_init_flag_t) = 0;
|
||||
virtual void initialize(bool *result) = 0;
|
||||
static Driver *get() { return driver; }
|
||||
virtual ~Driver() = default;
|
||||
|
||||
protected:
|
||||
static Driver *driver;
|
||||
|
|
Loading…
Reference in New Issue