On Wed, Mar 16, 2016 at 1:45 PM, Daniel Burchardt <danielburcha...@gmail.com> wrote: > It's not posible because: > > error: no matching function for call to ‘v8::Context::New(v8::Isolate*&, > v8::Persistent<v8::Context>&) > > V8::GetVersion - 4.10.0 (candidate)
It looks like you didn't copy Danny's example correctly. It should be: v8::Local<v8::Context> context = v8::Local<v8::Context>::New(isolate, persistent_context); Note that you call v8::Local<T>::New (with T=v8::Context), not v8::Context::New. -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to v8-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.