Skip to content

Commit 954b264

Browse files
committed
---
yaml --- r: 173299 b: refs/heads/snap-stage3 c: 9f5fc56 h: refs/heads/master i: 173297: b73207b 173295: f10206d v: v3
1 parent 12ef3c0 commit 954b264

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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: 896cb36ecab3eaeb7f101087e030e43771eca5ca
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 2cc81ac531c10a678ee25128a36fdc56ba00aaa3
4+
refs/heads/snap-stage3: 9f5fc563d3d592d5e44ab71759ffa26d326b3daa
55
refs/heads/try: 957472483d3a2f43c0e4f7c2056280a1022af93c
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/libcollections/bit.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2526,7 +2526,7 @@ mod bitv_bench {
25262526
for _ in range(0u, 100) {
25272527
bitv |= 1 << ((r.next_u32() as uint) % u32::BITS);
25282528
}
2529-
black_box(&bitv)
2529+
black_box(&bitv);
25302530
});
25312531
}
25322532

@@ -2538,7 +2538,7 @@ mod bitv_bench {
25382538
for _ in range(0u, 100) {
25392539
bitv.set((r.next_u32() as uint) % BENCH_BITS, true);
25402540
}
2541-
black_box(&bitv)
2541+
black_box(&bitv);
25422542
});
25432543
}
25442544

branches/snap-stage3/src/libcollections/str.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2841,7 +2841,7 @@ mod bench {
28412841
let s = "ศไทย中华Việt Nam; Mary had a little lamb, Little lamb";
28422842

28432843
b.iter(|| {
2844-
for ch in s.chars() { black_box(ch) }
2844+
for ch in s.chars() { black_box(ch); }
28452845
});
28462846
}
28472847

@@ -2869,7 +2869,7 @@ mod bench {
28692869
let s = "ศไทย中华Việt Nam; Mary had a little lamb, Little lamb";
28702870

28712871
b.iter(|| {
2872-
for ch in s.chars().rev() { black_box(ch) }
2872+
for ch in s.chars().rev() { black_box(ch); }
28732873
});
28742874
}
28752875

0 commit comments

Comments
 (0)