mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 05:24:02 +08:00
18 lines
316 B
C++
18 lines
316 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "source_level_debugger/source_level_debugger.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace NEO {
|
|
|
|
OsLibrary *SourceLevelDebugger::loadDebugger() {
|
|
return OsLibrary::load(SourceLevelDebugger::dllName);
|
|
}
|
|
} // namespace NEO
|