diff options
author | Ali Ijaz Sheikh <ofrobots@google.com> | 2015-12-21 12:27:19 -0800 |
---|---|---|
committer | Ali Ijaz Sheikh <ofrobots@google.com> | 2015-12-22 08:11:41 -0800 |
commit | 79dc1d7635344960ca79842e3f47bfdf11f9f881 (patch) | |
tree | feac30be15e697e53628a5db2626ef1b08c1e44b /src | |
parent | 6e11e220814e469cbbbe91b895362f6f11311c08 (diff) | |
download | node-new-79dc1d7635344960ca79842e3f47bfdf11f9f881.tar.gz |
src: remove forwards for v8::GC*logueCallback
These types are no longer used in the file and V8 4.9 no longer defines these
types anymore.
PR-URL: https://github.com/nodejs/node/pull/4381
Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'src')
-rw-r--r-- | src/node_counters.cc | 2 | ||||
-rw-r--r-- | src/node_dtrace.cc | 2 | ||||
-rw-r--r-- | src/node_lttng.cc | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/node_counters.cc b/src/node_counters.cc index ca05e25319..c8d2959091 100644 --- a/src/node_counters.cc +++ b/src/node_counters.cc @@ -11,8 +11,6 @@ namespace node { using v8::FunctionCallbackInfo; using v8::FunctionTemplate; using v8::GCCallbackFlags; -using v8::GCEpilogueCallback; -using v8::GCPrologueCallback; using v8::GCType; using v8::HandleScope; using v8::Isolate; diff --git a/src/node_dtrace.cc b/src/node_dtrace.cc index 568972bab3..2572bbee58 100644 --- a/src/node_dtrace.cc +++ b/src/node_dtrace.cc @@ -34,8 +34,6 @@ namespace node { using v8::FunctionCallbackInfo; using v8::FunctionTemplate; using v8::GCCallbackFlags; -using v8::GCEpilogueCallback; -using v8::GCPrologueCallback; using v8::GCType; using v8::HandleScope; using v8::Isolate; diff --git a/src/node_lttng.cc b/src/node_lttng.cc index 876bcda92f..b70f6ca809 100644 --- a/src/node_lttng.cc +++ b/src/node_lttng.cc @@ -29,8 +29,6 @@ namespace node { using v8::FunctionCallbackInfo; using v8::FunctionTemplate; using v8::GCCallbackFlags; -using v8::GCEpilogueCallback; -using v8::GCPrologueCallback; using v8::GCType; using v8::HandleScope; using v8::Isolate; |