mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
Change-Id: I7f0c9a9a13cae5cbf831e0d4e410c78c001a75d1 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
16 lines
281 B
C++
16 lines
281 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/platform/platform.h"
|
|
|
|
namespace NEO {
|
|
void __attribute__((destructor)) platformsDestructor() {
|
|
delete platformsImpl;
|
|
platformsImpl = nullptr;
|
|
}
|
|
} // namespace NEO
|