diff options
author | Michaƫl Zasso <mic.besace@gmail.com> | 2015-07-18 11:34:16 +0200 |
---|---|---|
committer | Rod Vagg <rod@vagg.org> | 2015-09-06 21:38:05 +1000 |
commit | 4abc896a826c892c0d124989cc4ea6f490328942 (patch) | |
tree | b201398a2fd9ea783ef5a8c9bf0ca9299f2451c4 /src/debug-agent.cc | |
parent | 9a03ae63566f761539bd3a18f0b08c34c4ba0e13 (diff) | |
download | node-new-4abc896a826c892c0d124989cc4ea6f490328942.tar.gz |
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/debug-agent.cc')
-rw-r--r-- | src/debug-agent.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/debug-agent.cc b/src/debug-agent.cc index b99446f69c..3409fb2603 100644 --- a/src/debug-agent.cc +++ b/src/debug-agent.cc @@ -39,7 +39,6 @@ using v8::Context; using v8::Function; using v8::FunctionCallbackInfo; using v8::FunctionTemplate; -using v8::Handle; using v8::HandleScope; using v8::Integer; using v8::Isolate; |