Commit 6eedb9ca by Mike Stump Committed by Mike Stump

* splay-tree.c (splay_tree_successor): Fix comments.

From-SVN: r57044
parent 09bfbc1c
2002-09-10 Mike Stump <mrs@apple.com>
* splay-tree.c (splay_tree_successor): Fix comments.
2002-09-11 Zack Weinberg <zack@codesourcery.com>
* cplus-dem.c: Code under #ifdef MAIN moved to gcc/cp/cxxfilt.c.
......
......@@ -482,7 +482,7 @@ splay_tree_predecessor (sp, key)
}
/* Return the immediate successor KEY, or NULL if there is no
predecessor. KEY need not be present in the tree. */
successor. KEY need not be present in the tree. */
splay_tree_node
splay_tree_successor (sp, key)
......@@ -492,7 +492,7 @@ splay_tree_successor (sp, key)
int comparison;
splay_tree_node node;
/* If the tree is empty, there is certainly no predecessor. */
/* If the tree is empty, there is certainly no successor. */
if (!sp->root)
return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment