-
Notifications
You must be signed in to change notification settings - Fork 747
Use c_schar instead of c_char #559
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
Conversation
The signedness of the C type 'char' is implementation defined. The rust type c_schar exists for this reason. Use it.
The type |
I didn't. But bindgen uses |
That sounds wrong indeed. It seems like |
That's right. Please update the PR to do that instead, thanks! |
Why do you want to have an additional variant One could of course rename the |
Whoops, you're totally right here. My memory failed me and I thought that there was a @bors-servo r+ |
📌 Commit 4f1e3da has been approved by |
Use c_schar instead of c_char The signedness of the C type 'char' is implementation defined. The rust type c_schar exists for this reason. Use it.
☀️ Test successful - status-travis |
The signedness of the C type 'char' is implementation defined. The
rust type c_schar exists for this reason. Use it.