mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
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
|