diff options
| author | est31 <MTest31@outlook.com> | 2017-01-15 01:03:33 +0100 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2017-01-15 02:17:26 +0100 |
| commit | 7821ea839167e4a06e2c17b3a74f8f419e7cea0c (patch) | |
| tree | 8ad1540e4c4e7f3e7616d8f4386d83b9a1b1f8aa /src/libsyntax | |
| parent | 530b5c860ba475d04a2d767e55deff74fbbc9007 (diff) | |
| download | rust-7821ea839167e4a06e2c17b3a74f8f419e7cea0c.tar.gz rust-7821ea839167e4a06e2c17b3a74f8f419e7cea0c.zip | |
Mark the pushpop_unsafe feature as "removed"
This marks the pushpop_unsafe feature as removed inside the feature_gate. It was added in commit 1829fa5199bae5a192c771807c532badce14be37 and then removed again in commit d399098fd82e0bf3ed61bbbbcdbb0b6adfa4c808 . 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 #39059).
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ext/expand.rs | 1 | ||||
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs index 201e8d69494..3a8f9126b49 100644 --- a/src/libsyntax/ext/expand.rs +++ b/src/libsyntax/ext/expand.rs @@ -926,7 +926,6 @@ impl<'feat> ExpansionConfig<'feat> { fn enable_trace_macros = trace_macros, fn enable_allow_internal_unstable = allow_internal_unstable, fn enable_custom_derive = custom_derive, - fn enable_pushpop_unsafe = pushpop_unsafe, } } diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 64f2510b790..ba6e752d310 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -127,9 +127,6 @@ declare_features! ( (active, reflect, "1.0.0", Some(27749)), (active, unboxed_closures, "1.0.0", Some(29625)), - // rustc internal. - (active, pushpop_unsafe, "1.2.0", None), - (active, allocator, "1.0.0", Some(27389)), (active, fundamental, "1.0.0", Some(29635)), (active, main, "1.0.0", Some(29634)), @@ -341,6 +338,7 @@ declare_features! ( // Allows using items which are missing stability attributes // rustc internal (removed, unmarked_api, "1.0.0", None), + (removed, pushpop_unsafe, "1.2.0", None), ); declare_features! ( |
