diff options
author | 2020-03-25 16:17:13 +0100 | |
---|---|---|
committer | 2020-03-27 16:47:43 -0700 | |
commit | 9794b5d2739d024a939224b6628a2d8ba43ccf7c (patch) | |
tree | e285c379028a4d3b7762fde46291acdd300591cb | |
parent | 91ab07a5f32e129e2f6ec9c60a20fa3b72681c9b (diff) | |
download | rust-x86-9794b5d2739d024a939224b6628a2d8ba43ccf7c.tar.gz rust-x86-9794b5d2739d024a939224b6628a2d8ba43ccf7c.tar.zst rust-x86-9794b5d2739d024a939224b6628a2d8ba43ccf7c.zip |
removed #![feature(const_fn, repr_transparent)] as these are now stable
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ #![cfg(any(target_arch = "x86", target_arch = "x86_64"))] #![allow(stable_features)] -#![feature(const_fn, asm, repr_transparent, core_intrinsics)] +#![feature(asm, core_intrinsics)] #![no_std] #![cfg_attr(test, allow(unused_features))] #![cfg_attr(all(test, feature = "vmtest"), feature(custom_test_frameworks))] |