-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node.js 6.0.0 complains about deprecated v8::FunctionTemplate::Set() with non-primitive values #13
Comments
Sorry, I'll be busy until Monday and not sure if I can look into this. I updated all dependencies to the latest versions and saw lots of warnings running Here's a related issue from another project and here's the fix. The problematic code is probably here. |
Basically When Node.js wants to initialize the module, it calls Finally, when you actually call your C++ code from JavaScript, it actually calls wrappers under For example when a method gets called, the path is:
The problem should be where the module is initialized ( |
Fixed in new release 0.1.2. |
When I run some C++ nbind-ed code with node v5.10.0, everything works fine.
But node v6.0.0 returns several warnings:
How can this be fixed? If I hade more insight of how nbind works, I would love to try fixing this...
The text was updated successfully, but these errors were encountered: