Navigation Menu

Skip to content

Commit

Permalink
Remove debug printing.
Browse files Browse the repository at this point in the history
  • Loading branch information
dim-an committed Aug 4, 2013
1 parent d49bb43 commit 28165d5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/libstd/trie.rs
Expand Up @@ -635,14 +635,12 @@ mod test_map {

let mut map = TrieMap::new();
do uint::range_rev(last, first) |x| {
printfln!("%x", x);
map.insert(x, x / 2);
true
};

let mut i = 0;
for (k, &v) in map.iter() {
printfln!("%x", k);
assert_eq!(k, first + i);
assert_eq!(v, k / 2);
i += 1;
Expand Down

5 comments on commit 28165d5

@bors
Copy link
Contributor

@bors bors commented on 28165d5 Aug 5, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 28165d5 Aug 5, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging dim-an/rust/trie-iterator = 28165d5 into auto

@bors
Copy link
Contributor

@bors bors commented on 28165d5 Aug 5, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dim-an/rust/trie-iterator = 28165d5 merged ok, testing candidate = d8b299d

@bors
Copy link
Contributor

@bors bors commented on 28165d5 Aug 5, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = d8b299d

Please sign in to comment.