Skip to content

Commit 97c0b38

Browse files
committed
Comments only: annotate more FIXMEs in libstd
1 parent a7e0eb3 commit 97c0b38

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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"]

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

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)