From d2f40801515af9cf88d7333f079e4b9b8e0f01ac Mon Sep 17 00:00:00 2001 From: cjihrig Date: Mon, 20 Nov 2017 09:29:35 -0500 Subject: [PATCH] src: remove unused variable This fixes a compiler warning. --- src/node.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index 573c74a37eb2ad..1c5971f0b44670 100644 --- a/src/node.cc +++ b/src/node.cc @@ -889,7 +889,6 @@ void SetupDomainUse(const FunctionCallbackInfo& args) { env->set_using_domains(true); HandleScope scope(env->isolate()); - Local process_object = env->process_object(); CHECK(args[0]->IsArray()); env->set_domains_stack_array(args[0].As());