diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-05-20 13:02:08 -0500 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-05-20 13:02:08 -0500 |
| commit | 15f97acdc87087e7747900be83d038757b86fb25 (patch) | |
| tree | 306dfc8cffc694a4d3be8d4a3c531b6ebfd63357 /src/libcore | |
| parent | 84233c0b4b777deb1c826e704f737959c991af54 (diff) | |
| download | rust-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.rs | 2 |
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; |
