]> git.lizzy.rs Git - rust.git/commitdiff
Remove the safe_suggestion feature
authorest31 <MTest31@outlook.com>
Sat, 14 Jan 2017 23:50:17 +0000 (00:50 +0100)
committerest31 <MTest31@outlook.com>
Sun, 15 Jan 2017 01:15:38 +0000 (02:15 +0100)
This removes the safe_suggestion feature from feature_gate.rs.
It was added in commit 164f0105bb65f31b89e5fb7f368c9e6f5833a3f8
and then removed again in commit c11fe553df269d6f47b4c48f5c47c08efdd373dc .

As the removal was in the same PR #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 #39059).

src/libsyntax/feature_gate.rs
src/tools/tidy/src/features.rs

index 90cca3129dcf20e2494c87f694d600e21daf1499..64f2510b7909c6da7ede394b575ff1ae87888064 100644 (file)
@@ -313,9 +313,6 @@ pub fn new() -> Features {
     // Allows #[target_feature(...)]
     (active, target_feature, "1.15.0", None),
 
-    // Allow safe suggestions for potential type conversions.
-    (active, safe_suggestion, "1.0.0", Some(37384)),
-
     // `extern "ptx-*" fn()`
     (active, abi_ptx, "1.15.0", None),
 
index b0da6647eb9002039ae4bcc913ba8a8c7dd1d8e4..e2f7f921db2aa8b7e5d06d164b421fa2230ffe3a 100644 (file)
@@ -165,7 +165,7 @@ pub fn check(path: &Path, bad: &mut bool) {
 
     // FIXME get this whitelist empty.
     let whitelist = vec![
-        "abi_ptx", "simd", "safe_suggestion", "macro_reexport",
+        "abi_ptx", "simd", "macro_reexport",
         "more_struct_aliases", "static_recursion", "reflect",
         "quote", "cfg_target_has_atomic", "custom_attribute",
         "default_type_parameter_fallback", "pushpop_unsafe",