From 58180fa4f7166c52b21403ea61c6556604ff2a17 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 13 Feb 2015 11:08:14 +0100 Subject: [PATCH] Fix warnings in script_traits. --- components/script_traits/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 895f290da2b..8b5f509544c 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -2,10 +2,12 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#![feature(core)] #![feature(int_uint)] +#![feature(libc)] +#![feature(rustc_private)] #![allow(missing_copy_implementations)] -#![allow(unstable)] extern crate devtools_traits; extern crate geom;