Skip to content

Commit f8ba488

Browse files
cjihrigaddaleax
authored andcommitted
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<Value>& args); ^ ../src/node.cc:845:13: warning: unused function 'DebugEnd' [-Wunused-function] static void DebugEnd(const FunctionCallbackInfo<Value>& args); PR-URL: #25165 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> Backport-PR-URL: #25496
1 parent dde7152 commit f8ba488

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/node.cc

-3
Original file line numberDiff line numberDiff line change
@@ -852,9 +852,6 @@ static Local<Object> GetFeatures(Environment* env) {
852852
return scope.Escape(obj);
853853
}
854854

855-
static void DebugProcess(const FunctionCallbackInfo<Value>& args);
856-
static void DebugEnd(const FunctionCallbackInfo<Value>& args);
857-
858855
void SetupProcessObject(Environment* env,
859856
const std::vector<std::string>& args,
860857
const std::vector<std::string>& exec_args) {

0 commit comments

Comments
 (0)