fix: StartInspector now takes a shared_ptr to DebugOptions

This commit is contained in:
Jeremy Apthorp 2018-09-17 17:29:16 -07:00 коммит произвёл Shelley Vohr
Родитель 88b494191c
Коммит 107c4455dc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F13993A75599653C
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -370,7 +370,7 @@ static struct {
void DrainVMTasks(Isolate* isolate) {}
void CancelVMTasks(Isolate* isolate) {}
bool StartInspector(Environment* env, const char* script_path,
const DebugOptions& options) {
std::shared_ptr<DebugOptions> options) {
env->ThrowError("Node compiled with NODE_USE_V8_PLATFORM=0");
return true;
}