aboutsummaryrefslogtreecommitdiff
path: root/src/reflist.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-07-06 10:05:38 +0200
committerThomas White <taw@physics.org>2012-02-22 15:27:32 +0100
commit8ad494ee8ce59292003aa8bae1a9909c989bdec7 (patch)
tree8ef3c5141ad8a8b05850bcbd9623231f5bae6819 /src/reflist.c
parentc0c41d642a84f033b02ffb14c105347e49e10b87 (diff)
Remove obsolete comments
Diffstat (limited to 'src/reflist.c')
-rw-r--r--src/reflist.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/reflist.c b/src/reflist.c
index 5ab99635..83f384c4 100644
--- a/src/reflist.c
+++ b/src/reflist.c
@@ -152,9 +152,7 @@ RefList *reflist_new()
new = malloc(sizeof(struct _reflist));
if ( new == NULL ) return NULL;
- /* Create pseudo-root with invalid indices.
- * The "real" root will be the left child of this. */
- new->head = NULL;//new_node(1<<31);
+ new->head = NULL;
return new;
}