Skip to content

Commit 9c1476e

Browse files
committed
Comments: turn XXXes into FIXMEs
1 parent 90372da commit 9c1476e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/libcore/private.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ a normal large stack.
6262
*/
6363
pub unsafe fn run_in_bare_thread(f: ~fn()) {
6464
let (port, chan) = pipes::stream();
65-
// XXX Unfortunate that this creates an extra scheduler but it's necessary
66-
// since rust_raw_thread_join_delete is blocking
65+
// FIXME #4525: Unfortunate that this creates an extra scheduler but it's
66+
// necessary since rust_raw_thread_join_delete is blocking
6767
do task::spawn_sched(task::SingleThreaded) unsafe {
6868
let closure: &fn() = || {
6969
f()

src/librustc/front/core_inject.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn inject_libcore_ref(sess: Session,
6868
};
6969
new_module = fld.fold_mod(new_module);
7070

71-
// XXX: Bad copy.
71+
// FIXME #2543: Bad copy.
7272
let new_crate = ast::crate_ { module: new_module, ..copy crate };
7373
(new_crate, span)
7474
},
@@ -94,7 +94,7 @@ fn inject_libcore_ref(sess: Session,
9494

9595
let vis = vec::append(~[vi2], module.view_items);
9696

97-
// XXX: Bad copy.
97+
// FIXME #2543: Bad copy.
9898
let new_module = { view_items: vis, ..copy module };
9999
fold::noop_fold_mod(new_module, fld)
100100
},

0 commit comments

Comments
 (0)