aboutsummaryrefslogtreecommitdiff
path: root/src/rt/rust_dom.cpp
diff options
context:
space:
mode:
authorMichael Bebenita <[email protected]>2010-07-28 12:36:59 -0700
committerGraydon Hoare <[email protected]>2010-07-28 20:30:29 -0700
commit06b52b70db868285de5cf71166e5ce5b9dfb8e00 (patch)
tree001f3d749cc48a65a7f230399b6ca17a1392b766 /src/rt/rust_dom.cpp
parentWrap long lines. (diff)
downloadrust-06b52b70db868285de5cf71166e5ce5b9dfb8e00.tar.xz
rust-06b52b70db868285de5cf71166e5ce5b9dfb8e00.zip
Fix typos in comments, delete obsolete comments and dead commented code.
Diffstat (limited to 'src/rt/rust_dom.cpp')
-rw-r--r--src/rt/rust_dom.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rt/rust_dom.cpp b/src/rt/rust_dom.cpp
index 205084ff..7392833d 100644
--- a/src/rt/rust_dom.cpp
+++ b/src/rt/rust_dom.cpp
@@ -217,8 +217,6 @@ void
rust_dom::reap_dead_tasks() {
for (size_t i = 0; i < dead_tasks.length(); ) {
rust_task *task = dead_tasks[i];
-// log(rust_log::TASK, "dead task 0x%" PRIxPTR " with ref_count: %d",
-// task, task->ref_count);
if (task->ref_count == 0) {
I(this, !task->waiting_tasks.length());
dead_tasks.swap_delete(task);