aboutsummaryrefslogtreecommitdiff
path: root/trie.h
diff options
context:
space:
mode:
Diffstat (limited to 'trie.h')
-rw-r--r--trie.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/trie.h b/trie.h
index 9d8b1ec0..52e1072d 100644
--- a/trie.h
+++ b/trie.h
@@ -22,7 +22,6 @@ typedef struct TRIE_NODE(TYPE) {
char c;
TYPE* value;
struct TRIE_NODE(TYPE)* next;
- /* child == NULL means leaf? */
struct TRIE_NODE(TYPE)* child;
} TRIE_NODE(TYPE);