Revert "refactor: migration to std::make_unique C++17"

This reverts commit 4cf685cb7d.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2025-01-09 01:11:44 +01:00
committed by Compute-Runtime-Automation
parent 4cf685cb7d
commit 58707e0cf7
17 changed files with 32 additions and 31 deletions

View File

@@ -9,6 +9,6 @@
namespace NEO {
std::unique_ptr<DeferredDeleter> createDeferredDeleter() {
return std::make_unique<DeferredDeleter>();
return std::unique_ptr<DeferredDeleter>(new DeferredDeleter());
}
} // namespace NEO