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
When included in a project with this configuration:
intrusive-collections = { version = "0.6", features = ["nightly"] }
Compilation fails with the following errors:
error: type `core::nonzero::NonZero<*mut T>` cannot be dereferenced --> intrusive-rs/src/unsafe_ref.rs:47:9 | 47 | *ptr.ptr | ^^^^^^^^ error: type `core::nonzero::NonZero<*mut T>` cannot be dereferenced --> intrusive-rs/src/unsafe_ref.rs:112:20 | 112 | unsafe { &**self.ptr } | ^^^^^^^^^ error: aborting due to 2 previous errors
I believe this is due to the following change in the rust compiler:
rust-lang/rust#41064
The text was updated successfully, but these errors were encountered:
e2e1762
Thanks, this should be fixed in 0.6.1 now.
Sorry, something went wrong.
No branches or pull requests
When included in a project with this configuration:
Compilation fails with the following errors:
I believe this is due to the following change in the rust compiler:
rust-lang/rust#41064
The text was updated successfully, but these errors were encountered: