summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2018-12-21 09:10:34 -0500
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-12-24 06:22:29 +0100
commite7e26b21198366999cd8ebfaa8ecd978a9e08c91 (patch)
tree6eb96cd414018432e4b81063acd62252707bdb53 /src
parent457603e96194b4858ad715f9faacb3ad7fec7f35 (diff)
downloadandroid-node-v8-e7e26b21198366999cd8ebfaa8ecd978a9e08c91.tar.gz
android-node-v8-e7e26b21198366999cd8ebfaa8ecd978a9e08c91.tar.bz2
android-node-v8-e7e26b21198366999cd8ebfaa8ecd978a9e08c91.zip
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);
Diffstat (limited to 'src')
-rw-r--r--src/node.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/node.cc b/src/node.cc
index 8f554363c0..e9e745d9de 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -841,9 +841,6 @@ static Local<Object> GetFeatures(Environment* env) {
return scope.Escape(obj);
}
-static void DebugProcess(const FunctionCallbackInfo<Value>& args);
-static void DebugEnd(const FunctionCallbackInfo<Value>& args);
-
void SetupProcessObject(Environment* env,
const std::vector<std::string>& args,
const std::vector<std::string>& exec_args) {