mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
unify function for getting env Related-To: NEO-8347 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
16 lines
321 B
C++
16 lines
321 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/debug_env_reader.h"
|
|
|
|
namespace NEO {
|
|
|
|
SettingsReader *SettingsReader::createOsReader(bool userScope, const std::string ®Key) {
|
|
return new EnvironmentVariableReader;
|
|
}
|
|
} // namespace NEO
|