We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
c_size_t
as c_size_t is an alias to usize on all platforms currently (https://doc.rust-lang.org/beta/core/ffi/type.c_size_t.html) it probably doesn't make sense to be nightly only just because of having this unstable feature enabled.
usize
The text was updated successfully, but these errors were encountered:
This could be remedied by just having a type c_size_t = usize in the crate root, and replace it as soon as c_size_t is stabilized.
type c_size_t = usize
Sorry, something went wrong.
No branches or pull requests
as
c_size_t
is an alias tousize
on all platforms currently (https://doc.rust-lang.org/beta/core/ffi/type.c_size_t.html) it probably doesn't make sense to be nightly only just because of having this unstable feature enabled.The text was updated successfully, but these errors were encountered: