about summary refs log tree commit diff
path: root/src/libstd/task
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-06-26 00:56:04 -0700
committerbors <bors@rust-lang.org>2013-06-26 00:56:04 -0700
commit09b4525f84ea878962f26bcd22d208b9d87d5560 (patch)
tree070e713e20e7bda8237002123c3dc561e8b8ccbf /src/libstd/task
parentebed4d00d01753d25fba087c6b5edcbc1406f306 (diff)
parentc109bed15b79c81fed4277abd0f4a71a221224c1 (diff)
downloadrust-09b4525f84ea878962f26bcd22d208b9d87d5560.tar.gz
rust-09b4525f84ea878962f26bcd22d208b9d87d5560.zip
auto merge of #7113 : alexcrichton/rust/banned-warnings, r=cmr
Reopening of #7031, Closes #6963

I imagine though that this will bounce in bors once or twice... Because attributes can't be cfg(stage0)'d off, there's temporarily a lot of new stage0/stage1+ code.

Diffstat (limited to 'src/libstd/task')
-rw-r--r--src/libstd/task/spawn.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/task/spawn.rs b/src/libstd/task/spawn.rs
index a3c1407c300..95fc53c1b55 100644
--- a/src/libstd/task/spawn.rs
+++ b/src/libstd/task/spawn.rs
@@ -91,7 +91,7 @@ use uint;
 use util;
 use unstable::sync::{Exclusive, exclusive};
 use rt::local::Local;
-use iterator::{IteratorUtil};
+use iterator::IteratorUtil;
 
 #[cfg(test)] use task::default_task_opts;
 #[cfg(test)] use comm;