Uh oh!
There was an error while loading. Please reload this page.
Remove raw_pointer_deriving lint - #29882
Conversation
rust-highfive
commented
Nov 17, 2015
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. |
Manishearth
commented
Nov 17, 2015
@bors r+ Looks good to me, thanks! |
bors
commented
Nov 17, 2015
📌 Commit 5e8225a has been approved by |
bors
commented
Nov 17, 2015
⌛ Testing commit 5e8225a with merge 71bcaa1... |
bors
commented
Nov 17, 2015
💔 Test failed - auto-mac-64-opt |
Manishearth
commented
Nov 17, 2015
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) 😄 |
Manishearth
commented
Nov 17, 2015
@alexcrichton Do we consider breakages in |
devonhollowood
commented
Nov 17, 2015
I submitted a pull request to libc. |
alexcrichton
commented
Nov 17, 2015
Nah this isn't a breaking change because it's just tweaking lints, which aren't considered breaking changes (due to |
Manishearth
commented
Nov 17, 2015
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 --amendor something like that. |
Manishearth
commented
Nov 17, 2015
@bors r+ |
bors
commented
Nov 17, 2015
📌 Commit 0823ee6 has been approved by |
bors
commented
Nov 18, 2015
bors
commented
Nov 18, 2015
This lint was removed from Rust recently and is causing builds to fail: rust-lang/rust#29882Fixesmaidsafe-archive#427.
brson
commented
Dec 11, 2015
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. |
Manishearth
commented
Dec 11, 2015
I thought lint changes are fine because of lint capping? |
Implement #14615