diff options
| author | bors <bors@rust-lang.org> | 2016-12-04 19:47:18 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-12-04 19:47:18 +0000 |
| commit | 341f084d8d91d4a186f3aea20e31aadc95c8edf6 (patch) | |
| tree | 37713fac5d93a8701fd25de3317afc2fa65f5138 /src/libsyntax | |
| parent | 2190f6c3c28595275b73e2b6134e3bfcab1f66f5 (diff) | |
| parent | 7cbd18a690da89251390db373d499b1770f20753 (diff) | |
| download | rust-341f084d8d91d4a186f3aea20e31aadc95c8edf6.tar.gz rust-341f084d8d91d4a186f3aea20e31aadc95c8edf6.zip | |
Auto merge of #38087 - jooert:remove_unmarked, r=petrochenkov
Remove the `unmarked_api` feature Closes #37981.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 1b2c2869cb8..29854260899 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -153,10 +153,6 @@ declare_features! ( // rustc internal (active, staged_api, "1.0.0", None), - // Allows using items which are missing stability attributes - // rustc internal - (active, unmarked_api, "1.0.0", None), - // Allows using #![no_core] (active, no_core, "1.3.0", Some(29639)), @@ -333,6 +329,9 @@ declare_features! ( (removed, test_removed_feature, "1.0.0", None), (removed, visible_private_types, "1.0.0", None), (removed, unsafe_no_drop_flag, "1.0.0", None), + // Allows using items which are missing stability attributes + // rustc internal + (removed, unmarked_api, "1.0.0", None), ); declare_features! ( |
