Code

avltree.h: Removed obsolete TODO note.
authorSebastian Harl <sh@tokkee.org>
Wed, 9 Jul 2014 19:26:52 +0000 (21:26 +0200)
committerSebastian Harl <sh@tokkee.org>
Wed, 9 Jul 2014 19:26:52 +0000 (21:26 +0200)
AVL trees *are* balanced now :-)

src/include/utils/avltree.h

index 4e4d00c1b95f37742eab50cf7cd4226511ee8e60..548c69506d0215ae8d893ffc18ea7e7646486969 100644 (file)
@@ -38,8 +38,6 @@ extern "C" {
  * An AVL tree implements Adelson-Velskii and Landis' self-balancing search
  * tree. It supports search, insert, and delete operations in average and
  * worst-case time-complexity O(log n).
  * An AVL tree implements Adelson-Velskii and Landis' self-balancing search
  * tree. It supports search, insert, and delete operations in average and
  * worst-case time-complexity O(log n).
- *
- * XXX: self-balancing is not implemented yet
  */
 struct sdb_avltree;
 typedef struct sdb_avltree sdb_avltree_t;
  */
 struct sdb_avltree;
 typedef struct sdb_avltree sdb_avltree_t;