Skip to content

Commit fb28c91

Browse files
bnoordhuisvkurchatkin
authored andcommitted
src: fix add-on builds, partially revert 8aed9d66
Commit 8aed9d66 ("src: cleanup `Isolate::GetCurrent()`") breaks building add-ons because of the following: In file included from ../node_modules/nan/nan.h:27:0, from ../src/binding.cc:18: /home/bnoordhuis/src/v1.x/src/node_object_wrap.h: In member function 'v8::Local<v8::Object> node::ObjectWrap::handle()': /home/bnoordhuis/src/v1.x/src/node_object_wrap.h:39:46: error: base operand of '->' has non-pointer type 'v8::Persistent<v8::Object>' return v8::Local<v8::Object>::New(handle_->GetIsolate(), persistent()); Mea culpa, I was one of the reviewers. PR-URL: #868 Reviewed-By: Vladimir Kurchatkin <[email protected]>
1 parent 0555b3c commit fb28c91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_object_wrap.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ObjectWrap {
3636

3737

3838
inline v8::Local<v8::Object> handle() {
39-
return v8::Local<v8::Object>::New(handle_->GetIsolate(), persistent());
39+
return handle(v8::Isolate::GetCurrent());
4040
}
4141

4242

0 commit comments

Comments
 (0)