diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-02-13 05:33:49 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-02-13 05:33:49 -0700 |
commit | 66f4faf44fbc6e8703d4336219a20dd3b19fb493 (patch) | |
tree | c018ce182aeb613f8ab46a2c403abb1340e6defc /components/script_traits/lib.rs | |
parent | 11b627704d539122bdf9755644fb5bc0c6a03bb6 (diff) | |
parent | 830e6741c76a5eef85096d0378484d62f70c911a (diff) | |
download | servo-66f4faf44fbc6e8703d4336219a20dd3b19fb493.tar.gz servo-66f4faf44fbc6e8703d4336219a20dd3b19fb493.zip |
auto merge of #4922 : servo/servo/warnings, r=jdm
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
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; |