From da4adad1ec4757dc28aed2bd3c925741aebfc9df 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); --- src/node.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/node.cc b/src/node.cc index 9bd2ac9ff6f920..5c05b8db987a82 100644 --- a/src/node.cc +++ b/src/node.cc @@ -841,9 +841,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) {