From f416a6a66ed23fdfd0c66cddff523b0c5d5bb42e Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Sat, 21 Mar 2015 23:03:28 +0100 Subject: [PATCH] Update some feature gates. --- components/gfx/lib.rs | 1 - components/util/lib.rs | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index 62f72722b9c..a2cb03d33a6 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -8,7 +8,6 @@ #![feature(core)] #![feature(int_uint)] #![cfg_attr(any(target_os="linux", target_os = "android"), feature(io))] -#![cfg_attr(any(target_os="linux", target_os = "android"), feature(old_path))] #![feature(plugin)] #![feature(rustc_private)] #![feature(std_misc)] diff --git a/components/util/lib.rs b/components/util/lib.rs index 101d240e107..e8c54f6e8f8 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -10,13 +10,15 @@ #![feature(hash)] #![feature(int_uint)] #![feature(io)] -#![feature(optin_builtin_traits)] #![feature(old_io)] +#![feature(optin_builtin_traits)] +#![feature(page_size)] #![feature(path)] #![feature(path_ext)] #![feature(plugin)] #![feature(rustc_private)] #![feature(std_misc)] +#![feature(str_words)] #![feature(unicode)] #![feature(unsafe_destructor)]