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.
This commit is contained in:
parent
fcdf1bcd05
commit
b570ccfd2d
|
@ -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))]
|
||||
|
|
Loading…
Reference in New Issue