Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion core/avl_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/* Copied and modified from http://pine.cs.yale.edu/pinewiki/C/AvlTree google cache */

#include "avl_tree.h"
#include "ross.h"

/* implementation of an AVL tree with explicit heights */

Expand Down Expand Up @@ -254,7 +255,7 @@ avlDelete(AvlTree *t, tw_event *key)
AvlTree oldroot;

if (*t == AVL_EMPTY) {
tw_error(TW_LOC, "We never look for non-existent events!");
// tw_error(TW_LOC, "We never look for non-existent events!");
return target;
}

Expand Down
Loading