Skip to content

Commit 2fcf1c1

Browse files
committed
---
yaml --- r: 15746 b: refs/heads/try c: 97c0b38 h: refs/heads/master v: v3
1 parent 7e9efed commit 2fcf1c1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: a7e0eb35819bb9171b60f2854753f7784da6a087
5+
refs/heads/try: 97c0b3848d127c9966b6d71baa68c560b1f78845
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/libstd/smallintmap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import core::option;
66
import core::option::{some, none};
77

88
// FIXME: Should not be @; there's a bug somewhere in rustc that requires this
9-
// to be.
9+
// to be. (#2347)
1010
type smallintmap<T: copy> = @{mut v: [mut option<T>]};
1111

1212
#[doc = "Create a smallintmap"]

branches/try/src/libstd/sort.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ fn qsort3<T: copy>(compare_func_lt: le<T>, compare_func_eq: le<T>,
141141
qsort3::<T>(compare_func_lt, compare_func_eq, arr, i, right);
142142
}
143143

144-
// FIXME: This should take lt and eq types
144+
// FIXME: This should take lt and eq types (#2348)
145145
#[doc = "
146146
Fancy quicksort. Sorts a mut vector in place.
147147

branches/try/src/libstd/tempfile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn mkdtemp(prefix: str, suffix: str) -> option<str> {
99
let mut i = 0u;
1010
while (i < 1000u) {
1111
let s = prefix + r.gen_str(16u) + suffix;
12-
if os::make_dir(s, 0x1c0i32) { // FIXME: u+rwx
12+
if os::make_dir(s, 0x1c0i32) { // FIXME: u+rwx (#2349)
1313
ret some(s);
1414
}
1515
i += 1u;

0 commit comments

Comments
 (0)