aboutsummaryrefslogtreecommitdiff
path: root/trie.inc.h
diff options
context:
space:
mode:
Diffstat (limited to 'trie.inc.h')
-rw-r--r--trie.inc.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/trie.inc.h b/trie.inc.h
index 50b8ec5b..fbc3b807 100644
--- a/trie.inc.h
+++ b/trie.inc.h
@@ -47,7 +47,6 @@ int PUSH(TRIE(TYPE)) ( TRIE(TYPE)* trie, char* key, TYPE* val ) {
last = t;
}
last->value = RESOLVE(TYPE)(last->value, val);
- // last->value = val;
return 0;
} else if (cur->c == subkey[0]) {
/* This node belongs to the key,