Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichaƫl Zasso <mic.besace@gmail.com>2015-07-18 12:34:16 +0300
committerRod Vagg <rod@vagg.org>2015-09-06 14:38:05 +0300
commit4abc896a826c892c0d124989cc4ea6f490328942 (patch)
treeb201398a2fd9ea783ef5a8c9bf0ca9299f2451c4 /src/node_lttng.cc
parent9a03ae63566f761539bd3a18f0b08c34c4ba0e13 (diff)
src: replace usage of v8::Handle with v8::Local
v8::Handle is deprecated: https://codereview.chromium.org/1224623004 PR-URL: https://github.com/nodejs/io.js/pull/2202 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'src/node_lttng.cc')
-rw-r--r--src/node_lttng.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/node_lttng.cc b/src/node_lttng.cc
index 0c63882c793..876bcda92f8 100644
--- a/src/node_lttng.cc
+++ b/src/node_lttng.cc
@@ -32,7 +32,6 @@ using v8::GCCallbackFlags;
using v8::GCEpilogueCallback;
using v8::GCPrologueCallback;
using v8::GCType;
-using v8::Handle;
using v8::HandleScope;
using v8::Isolate;
using v8::Local;
@@ -234,7 +233,7 @@ void lttng_gc_done(Isolate* isolate, GCType type, GCCallbackFlags flags) {
NODE_GC_DONE(type, flags, isolate);
}
-void InitLTTNG(Environment* env, Handle<Object> target) {
+void InitLTTNG(Environment* env, Local<Object> target) {
HandleScope scope(env->isolate());
static struct {