From 2b8e3f6029a4710f30d023808285b8ebbd1ebd26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 20 Jan 2019 09:33:55 +0000 Subject: [PATCH] Fix compilation on new nightly. Compilation on rustc 1.33.0-nightly (c76f3c374 2019-01-18) failed with ``` error: the feature `cfg_target_vendor` has been stable since 1.33.0 and no longer requires an attribute to enable --> src/lib.rs:19:12 | 19 | #![feature(cfg_target_vendor)] | ^^^^^^^^^^^^^^^^^ | ``` Removed the attribute to make it compile. --- library/compiler-builtins/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/library/compiler-builtins/src/lib.rs b/library/compiler-builtins/src/lib.rs index 0acb00698d2a..fddfa67aa8ea 100644 --- a/library/compiler-builtins/src/lib.rs +++ b/library/compiler-builtins/src/lib.rs @@ -16,7 +16,6 @@ #![feature(abi_unadjusted)] #![feature(linkage)] #![feature(lang_items)] -#![feature(cfg_target_vendor)] #![allow(unused_features)] #![no_builtins] #![cfg_attr(feature = "compiler-builtins", feature(staged_api))]