Skip to content

Commit

Permalink
Fix compilation on new nightly.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cyplo committed Jan 20, 2019
1 parent fcdf1bc commit b570ccf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))]
Expand Down

0 comments on commit b570ccf

Please sign in to comment.