src: fix Persistent<> deprecation warning

Pass the Isolate to Persistent<Function>::New(). Fixes the following
warning:

  ../../src/node.cc: In function ‘v8::Handle<v8::Value>
  node::UsingDomains(const v8::Arguments&)’:
  ../../src/node.cc:921: warning: ‘New’ is deprecated
  declared at ../../deps/v8/include/v8.h:4438)
pull/5010/head
Ben Noordhuis 2013-03-29 16:13:06 +01:00
parent 87f9ece334
commit 3f091c7293
1 changed files with 1 additions and 1 deletions

View File

@ -918,7 +918,7 @@ Handle<Value> UsingDomains(const Arguments& args) {
Local<Function> ndt = ndt_v.As<Function>();
process->Set(String::New("_tickCallback"), tdc);
process->Set(String::New("nextTick"), ndt);
process_tickCallback = Persistent<Function>::New(tdc);
process_tickCallback = Persistent<Function>::New(node_isolate, tdc);
return Undefined();
}