auto merge of #4924 : servo/servo/warnings, r=jdm

This commit is contained in:
bors-servo 2015-02-13 07:36:50 -07:00
commit 9c476a290a
10 changed files with 46 additions and 35 deletions

View file

@ -8,9 +8,9 @@
#![feature(core)]
#![feature(hash)]
#![feature(int_uint)]
#![feature(io)]
#![cfg_attr(any(target_os="linux", target_os = "android"), feature(io))]
#![feature(libc)]
#![feature(path)]
#![cfg_attr(any(target_os="linux", target_os = "android"), feature(path))]
#![feature(plugin)]
#![feature(rustc_private)]
#![feature(std_misc)]

View file

@ -12,7 +12,7 @@
//! - `#[dom_struct]` : Implies `#[privatize]`,`#[jstraceable]`, and `#[must_root]`.
//! Use this for structs that correspond to a DOM type
#![feature(plugin_registrar, quote, plugin, box_syntax, rustc_private, core)]
#![feature(plugin_registrar, quote, plugin, box_syntax, rustc_private, core, unicode)]
#![allow(missing_copy_implementations)]