about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-05-20 13:02:08 -0500
committerAlex Crichton <alex@alexcrichton.com>2013-05-20 13:02:08 -0500
commit15f97acdc87087e7747900be83d038757b86fb25 (patch)
tree306dfc8cffc694a4d3be8d4a3c531b6ebfd63357 /src/libcore
parent84233c0b4b777deb1c826e704f737959c991af54 (diff)
downloadrust-15f97acdc87087e7747900be83d038757b86fb25.tar.gz
rust-15f97acdc87087e7747900be83d038757b86fb25.zip
Correctly track the source of imports with the same name
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/vec.rs b/src/libcore/vec.rs
index 14dcde2381b..65f8dab25a5 100644
--- a/src/libcore/vec.rs
+++ b/src/libcore/vec.rs
@@ -22,7 +22,7 @@ use old_iter;
 use iterator::Iterator;
 use kinds::Copy;
 use libc;
-use old_iter::{BaseIter, CopyableIter};
+use old_iter::CopyableIter;
 use option::{None, Option, Some};
 use ptr::to_unsafe_ptr;
 use ptr;