about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-08-30 17:20:36 -0700
committerbors <bors@rust-lang.org>2013-08-30 17:20:36 -0700
commit29449e355a68d2b878af1cdb65b97454e645206f (patch)
tree572fe324fe4e789f0e017456069ec7570b6a53cb /src/libsyntax/parse
parent8002a09bf915bd186e4e455b25265b4160bfd125 (diff)
parent9730ed9b027f17441faa90fce26350991a76b1d5 (diff)
downloadrust-29449e355a68d2b878af1cdb65b97454e645206f.tar.gz
rust-29449e355a68d2b878af1cdb65b97454e645206f.zip
auto merge of #8889 : erickt/rust/cleanup, r=catamorphism
This fixes a couple minor things I've been sitting on. It cleans up some warnings, CapCases some types in librustc's rscope module, and adds a fixme.
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs
index 81113f24329..61dcc6c1947 100644
--- a/src/libsyntax/parse/mod.rs
+++ b/src/libsyntax/parse/mod.rs
@@ -340,7 +340,7 @@ mod test {
     use parse::token::{str_to_ident};
     use util::parser_testing::{string_to_tts_and_sess, string_to_parser};
     use util::parser_testing::{string_to_expr, string_to_item};
-    use util::parser_testing::{string_to_stmt, strs_to_idents};
+    use util::parser_testing::string_to_stmt;
 
     // map a string to tts, return the tt without its parsesess
     fn string_to_tts_only(source_str : @str) -> ~[ast::token_tree] {