diff options
| author | Johannes Oertel <johannes.oertel@uni-due.de> | 2016-11-30 15:23:11 +0100 |
|---|---|---|
| committer | Johannes Oertel <johannes.oertel@uni-due.de> | 2016-11-30 15:51:04 +0100 |
| commit | 7cbd18a690da89251390db373d499b1770f20753 (patch) | |
| tree | 0fc7115cc9164b22a28c73ef7f031dacbce14611 /src/libsyntax | |
| parent | 3abaf43f770a8bae23da474690e3841041219029 (diff) | |
| download | rust-7cbd18a690da89251390db373d499b1770f20753.tar.gz rust-7cbd18a690da89251390db373d499b1770f20753.zip | |
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 aa6a29b78b0..52374f232de 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)), @@ -330,6 +326,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! ( |
