Skip to content

Commit e38b3f9

Browse files
committed
1 parent 67d2dd9 commit e38b3f9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

macros/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ extern crate proc_macro;
88
#[macro_use] extern crate quote;
99
extern crate syn;
1010

11-
use std::ascii::AsciiExt;
11+
#[allow(unused_imports)] use std::ascii::AsciiExt;
1212

1313
define_proc_macros! {
1414
/// Input: the arms of a `match` expression.

src/nth.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* License, v. 2.0. If a copy of the MPL was not distributed with this
33
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44

5-
use std::ascii::AsciiExt;
5+
#[allow(unused_imports)] use std::ascii::AsciiExt;
66

77
use super::{Token, Parser, ParserInput, BasicParseError};
88

src/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use cow_rc_str::CowRcStr;
66
use smallvec::SmallVec;
77
use std::ops::Range;
8-
use std::ascii::AsciiExt;
8+
#[allow(unused_imports)] use std::ascii::AsciiExt;
99
use std::ops::BitOr;
1010
use tokenizer::{Token, Tokenizer, SourcePosition, SourceLocation};
1111

src/rules_and_declarations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use cow_rc_str::CowRcStr;
88
use parser::{parse_until_before, parse_until_after, parse_nested_block, ParserState};
9-
use std::ascii::AsciiExt;
9+
#[allow(unused_imports)] use std::ascii::AsciiExt;
1010
use super::{Token, Parser, Delimiter, ParseError, BasicParseError, BasicParseErrorKind};
1111

1212
/// Parse `!important`.

src/serializer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use dtoa_short::{self, Notation};
66
use itoa;
7-
use std::ascii::AsciiExt;
7+
#[allow(unused_imports)] use std::ascii::AsciiExt;
88
use std::fmt::{self, Write};
99
use std::io;
1010
use std::str;

src/tokenizer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use std::ops::Range;
88
use std::char;
9-
use std::ascii::AsciiExt;
9+
#[allow(unused_imports)] use std::ascii::AsciiExt;
1010
use std::i32;
1111

1212
use parser::ParserState;

0 commit comments

Comments
 (0)