aboutsummaryrefslogtreecommitdiff
path: root/trie.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-01-22 14:16:30 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-01-22 14:18:19 +0100
commitdba60d8b985247be7f0b0eef0bc0cefef651c824 (patch)
tree853afca0b32884c279e1a949313873f9c0d649d6 /trie.h
parentStart using trie's instead of hash-maps. (diff)
downloadcalp-dba60d8b985247be7f0b0eef0bc0cefef651c824.tar.gz
calp-dba60d8b985247be7f0b0eef0bc0cefef651c824.tar.xz
Fix crash.
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);