-
Notifications
You must be signed in to change notification settings - Fork 506
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
1.9 broke my call to NanThrowError #390
Comments
This code doesn't work as well: NanThrowError(NanErrnoException(errno)); |
The workaround/fix is quite easy thought: NanThrowError((v8::Handle<v8::Value>) err); |
I speculate you're hitting a compiler bug. Two I don't have any off-the-cuff suggestions on how to fix this in nan but what happens when you rewrite the call to EDIT: Concurrent post. :-) |
Yeah I thought it was strange, hmm. Just published the fix I just posted, is there any benefit in doing |
|
Cool, I guess that it's more idiomatic then 👍 |
The tests don't complain with our compilers. |
LinusU/fs-xattr#8
The following code works in
1.8.x
but not in1.9
.This is the error:
I think that maybe this is because of #322
The text was updated successfully, but these errors were encountered: