Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7537eb3

Browse files
committedDec 20, 2014
auto merge of #19511 : eddyb/rust/no-shadow, r=alexcrichton
r? @erickt
2 parents 1c2df5c + 64a4474 commit 7537eb3

File tree

59 files changed

+210
-240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+210
-240
lines changed
 

‎src/libcollections/bench.rs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
use std::prelude::*;
11+
use prelude::*;
1212
use std::rand;
1313
use std::rand::Rng;
1414
use test::Bencher;

‎src/libcollections/binary_heap.rs‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,10 +617,9 @@ impl<T: Ord> Extend<T> for BinaryHeap<T> {
617617

618618
#[cfg(test)]
619619
mod tests {
620-
use std::prelude::*;
620+
use prelude::*;
621621

622622
use super::BinaryHeap;
623-
use vec::Vec;
624623

625624
#[test]
626625
fn test_iterator() {

0 commit comments

Comments
 (0)
Please sign in to comment.