From 4e702e5a6a0b9a9e46b4a2e0298fdeb3acee06d9 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Fri, 21 Dec 2018 09:10:34 -0500 Subject: [PATCH] src: fix compiler warnings The warnings in question are: ../src/node.cc:844:13: warning: unused function 'DebugProcess' [-Wunused-function] static void DebugProcess(const FunctionCallbackInfo& args); ^ ../src/node.cc:845:13: warning: unused function 'DebugEnd' [-Wunused-function] static void DebugEnd(const FunctionCallbackInfo& args); PR-URL: https://github.com/nodejs/node/pull/25165 Reviewed-By: Anna Henningsen Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Daniel Bevenius Backport-PR-URL: https://github.com/nodejs/node/pull/25496 --- src/node.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/node.cc b/src/node.cc index 524785297eb503..01da762ebddb26 100644 --- a/src/node.cc +++ b/src/node.cc @@ -852,9 +852,6 @@ static Local GetFeatures(Environment* env) { return scope.Escape(obj); } -static void DebugProcess(const FunctionCallbackInfo& args); -static void DebugEnd(const FunctionCallbackInfo& args); - void SetupProcessObject(Environment* env, const std::vector& args, const std::vector& exec_args) {