Skip to content

Commit 1f24feb

Browse files
committed
---
yaml --- r: 21631 b: refs/heads/snap-stage3 c: 914b6fe h: refs/heads/master i: 21629: ee7637b 21627: 6280f60 21623: ab95240 21615: 47af936 21599: c64a951 21567: 949976f 21503: a413077 v: v3
1 parent 86932a7 commit 1f24feb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: e430a699f2c60890d9b86069fd0c68a70ece7120
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 4e515c14af8598f5e0d8e62847741523e7c14ba5
4+
refs/heads/snap-stage3: 914b6fead9eaec4f5ab3d7cbf539f5da8d28ff35
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/test/bench/std-smallintmap.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
use std;
44
import std::smallintmap;
5-
import std::smallintmap::smallintmap;
5+
import std::smallintmap::SmallIntMap;
66
import io::WriterUtil;
77

8-
fn append_sequential(min: uint, max: uint, map: smallintmap<uint>) {
8+
fn append_sequential(min: uint, max: uint, map: SmallIntMap<uint>) {
99
for uint::range(min, max) |i| {
1010
map.insert(i, i + 22u);
1111
}
1212
}
1313

14-
fn check_sequential(min: uint, max: uint, map: smallintmap<uint>) {
14+
fn check_sequential(min: uint, max: uint, map: SmallIntMap<uint>) {
1515
for uint::range(min, max) |i| {
1616
assert map.get(i) == i + 22u;
1717
}

0 commit comments

Comments
 (0)