about summary refs log tree commit diff
path: root/src/rt/rust_log.cpp
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-06-21 14:17:54 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-06-21 16:03:28 -0700
commitc814df0bd67ba52357074d9f9a56327f93fdfcda (patch)
tree08367039f3be827e98a808fb7d90be23e98226b2 /src/rt/rust_log.cpp
parentbe8b09160bb6cefc239a8ede5e4ac01e1d61adf9 (diff)
downloadrust-c814df0bd67ba52357074d9f9a56327f93fdfcda.tar.gz
rust-c814df0bd67ba52357074d9f9a56327f93fdfcda.zip
Comments only: annotate FIXMEs
Diffstat (limited to 'src/rt/rust_log.cpp')
-rw-r--r--src/rt/rust_log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_log.cpp b/src/rt/rust_log.cpp
index 774a549fe8b..6e29d873ed2 100644
--- a/src/rt/rust_log.cpp
+++ b/src/rt/rust_log.cpp
@@ -127,7 +127,7 @@ rust_log::trace_ln(rust_task *task, uint32_t level, char *message) {
     }
 
     // FIXME: The scheduler and task names used to have meaning,
-    // but they are always equal to 'main' currently
+    // but they are always equal to 'main' currently (#2672)
 #if 0
 
 #if defined(__WIN32__)
@@ -234,7 +234,7 @@ void update_crate_map(const cratemap* map, log_directive* dirs,
     update_module_map(map->entries, dirs, n_dirs, n_matches);
     // Then recurse on linked crates
     // FIXME this does double work in diamond-shaped deps. could keep
-    //   a set of visited addresses, if it turns out to be actually slow
+    // a set of visited addresses, if it turns out to be actually slow (#2673)
     for (size_t i = 0; map->children[i]; i++) {
         update_crate_map(map->children[i], dirs, n_dirs, n_matches);
     }