-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Remove raw_pointer_deriving lint #29882
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @pnkfelix (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. The way Github handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
@bors r+ Looks good to me, thanks! |
📌 Commit 5e8225a has been approved by |
⌛ Testing commit 5e8225a with merge 71bcaa1... |
💔 Test failed - auto-mac-64-opt |
You'll have to open a PR to https://github.com/rust-lang-nursery/libc first to remove that, and then update the submodule. Sorry about that. Let me know if you need help (or want me to do it for you) 😄 |
@alexcrichton Do we consider breakages in |
I submitted a pull request to libc. |
Nah this isn't a breaking change because it's just tweaking lints, which aren't considered breaking changes (due to |
Cool. @devonhollowood It landed, so you need to now update the submodule to rust-lang/libc@8531cc1 and add it to your commit. If you need help: cd src/liblibc
git fetch origin
git checkout 8531cc11e196b7ae9072ae7b384a930ff7b00dfb
cd ..
git add liblibc
git commit --amend or something like that. |
@bors r+ |
📌 Commit 0823ee6 has been approved by |
This lint was removed from Rust recently and is causing builds to fail: rust-lang/rust#29882 Fixes maidsafe-archive#427.
This caused breakage. I was under the impression that lints are never supposed to be removed because of this problem and simply turned to no-ops. |
I thought lint changes are fine because of lint capping? |
Implement #14615