diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2019-07-01 15:15:19 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2019-07-01 15:43:24 +0200 |
commit | bddfe9a4684cf6ffa68fb283a222ce14242553c8 (patch) | |
tree | 03b9517e6b6b649b90c0ab877e3e3d8765365408 /ports/glutin/main.rs | |
parent | d1efad676301798756c36990de8aa2784dab91db (diff) | |
download | servo-bddfe9a4684cf6ffa68fb283a222ce14242553c8.tar.gz servo-bddfe9a4684cf6ffa68fb283a222ce14242553c8.zip |
Remove `default-except-unstable`
… and use remaining unstable features unconditionally.
This doesn’t actually change the set of crates that can build on the Stable channel.
Diffstat (limited to 'ports/glutin/main.rs')
-rw-r--r-- | ports/glutin/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/glutin/main.rs b/ports/glutin/main.rs index 23be648bad8..50da58121bc 100644 --- a/ports/glutin/main.rs +++ b/ports/glutin/main.rs @@ -15,7 +15,7 @@ //! //! [glutin]: https://github.com/tomaka/glutin -#![cfg_attr(feature = "unstable", feature(core_intrinsics))] +#![feature(core_intrinsics)] #[cfg(not(target_os = "android"))] include!("main2.rs"); |