From a9be7bf35ba68781894207c74c9ba8ab5915d141 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Mon, 20 Nov 2017 09:29:35 -0500 Subject: [PATCH] src: remove unused variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes a compiler warning. PR-URL: https://github.com/nodejs/node/pull/17150 Reviewed-By: Michael Dawson Reviewed-By: Anatoli Papirovski Reviewed-By: Anna Henningsen Reviewed-By: Tobias Nießen Reviewed-By: Timothy Gu Reviewed-By: James M Snell --- src/node.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index a590184c31db3d..21c2dc849a2dd9 100644 --- a/src/node.cc +++ b/src/node.cc @@ -1224,7 +1224,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());