mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
Resolves: NEO-4713 Change-Id: Id9ce30b84943c4b364f7756a430d58df2614a28b Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
16 lines
316 B
C++
16 lines
316 B
C++
/*
|
|
* Copyright (C) 2020 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
|