Fix warnings in style.

This commit is contained in:
Simon Sapin 2015-03-18 19:29:48 +01:00
parent 99cf9dbfc1
commit d553bfefbb
2 changed files with 2 additions and 2 deletions

View file

@ -2,11 +2,11 @@
* 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(alloc)]
#![feature(plugin)]
#![feature(int_uint)]
#![feature(box_syntax)]
#![feature(core)]
#![feature(std_misc)]
#![feature(collections)]
#![feature(rustc_private)]

View file

@ -9,7 +9,7 @@ use selectors::matching::{SelectorMap, Rule};
use selectors::matching::DeclarationBlock as GenericDeclarationBlock;
use selectors::parser::PseudoElement;
use selectors::smallvec::VecLike;
use selectors::tree::{TNode, TElement};
use selectors::tree::TNode;
use util::resource_files::read_resource_file;
use legacy::PresentationalHintSynthesis;