17 lines
307 B
C++
17 lines
307 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/definitions/translate_debug_settings.h"
|
|
|
|
namespace NEO {
|
|
|
|
void translateDebugSettings(DebugVariables &debugVariables) {
|
|
translateDebugSettingsBase(debugVariables);
|
|
}
|
|
|
|
} // namespace NEO
|