-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Mark safe_suggestion and pushpop_unsafe as removed in feature_gate.rs #39071
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
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
📌 Commit fd74177 has been approved by |
@est31 as per the comment in |
@durka better now? |
8bc812d
to
f1a78c8
Compare
Since safe_suggestion never really existed, I'm not sure it's useful to put in the removed list as well... |
This removes the safe_suggestion feature from feature_gate.rs. It was added in commit 164f010 and then removed again in commit c11fe55 . As the removal was in the same PR rust-lang#38099 as the addition, we don't move it to the "removed" section. Removes an element from the whitelist of non gate tested unstable lang features (issue rust-lang#39059).
This marks the pushpop_unsafe feature as removed inside the feature_gate. It was added in commit 1829fa5 and then removed again in commit d399098 . Seems that the second commit forgot to mark it as removed in feature_gate.rs. This enables us to remove another element from the whitelist of non gate tested unstable lang features (issue rust-lang#39059).
Thanks! @bors: r+ |
📌 Commit 7821ea8 has been approved by |
Mark safe_suggestion and pushpop_unsafe as removed in feature_gate.rs This removes two features from feature_gate.rs: `safe_suggestion` and `pushpop_unsafe`. Both had been removed in other places already, but were forgotten to be removed from feature_gate.rs. * `safe_suggestion` was added in commit 164f010 and then removed again in commit c11fe55 both in the same PR #38099. * `pushpop_unsafe` was added in commit 1829fa5 and removed again in commit d399098 Removes two elements from the whitelist of non gate tested unstable lang features (issue #39059).
💔 Test failed - status-appveyor |
@bors: retry After nearly 5 hours it looks like AppVeyor lost track of those builds? I canceled manually to keep the queue moving. |
@alexcrichton it was likely this issue: http://status.appveyor.com/incidents/k06ydx9hkhbt |
Mark safe_suggestion and pushpop_unsafe as removed in feature_gate.rs This removes two features from feature_gate.rs: `safe_suggestion` and `pushpop_unsafe`. Both had been removed in other places already, but were forgotten to be removed from feature_gate.rs. * `safe_suggestion` was added in commit 164f010 and then removed again in commit c11fe55 both in the same PR #38099. * `pushpop_unsafe` was added in commit 1829fa5 and removed again in commit d399098 Removes two elements from the whitelist of non gate tested unstable lang features (issue #39059).
☀️ Test successful - status-appveyor, status-travis |
@est31 thanks for the pointer! |
This removes two features from feature_gate.rs:
safe_suggestion
andpushpop_unsafe
. Both had been removed in other places already, but were forgotten to be removed from feature_gate.rs.safe_suggestion
was added in commit 164f010 and then removed again in commit c11fe55 both in the same PR Cast suggestions #38099.pushpop_unsafe
was added in commit 1829fa5 and removed again in commit d399098Removes two elements from the whitelist of non gate tested unstable lang features (issue #39059).