Skip to content

Commit f36121e

Browse files
author
Christoph Kieslich
committed
Replace removed Handle with Local
1 parent c7da9d8 commit f36121e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

netlinksocket.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using namespace v8;
55

6-
void InitAll(Handle<Object> exports)
6+
void InitAll(Local<Object> exports)
77
{
88
NetLinkWrapper::Init(exports);
99
}

netlinkwrapper.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ NetLinkWrapper::~NetLinkWrapper()
1818
}
1919
}
2020

21-
void NetLinkWrapper::Init(Handle<Object> exports)
21+
void NetLinkWrapper::Init(Local<Object> exports)
2222
{
2323
Isolate* isolate = Isolate::GetCurrent();
2424

netlinkwrapper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class NetLinkWrapper : public node::ObjectWrap
99
{
1010
public:
11-
static void Init(v8::Handle<v8::Object> exports);
11+
static void Init(v8::Local<v8::Object> exports);
1212

1313
private:
1414
NL::Socket* socket;

0 commit comments

Comments
 (0)