From 8e4a59a4e0816c15a66a9165e8281553fb465476 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 12 Mar 2007 20:11:54 +0000 Subject: [PATCH] This assertion is no longer correct because of sm_trie_delete() --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40610 --- core/sm_trie.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/sm_trie.cpp b/core/sm_trie.cpp index b87faed2..375e3e72 100644 --- a/core/sm_trie.cpp +++ b/core/sm_trie.cpp @@ -802,12 +802,6 @@ bool sm_trie_insert(Trie *trie, const char *key, void *value) */ assert(node->mode == Node_Arc); - /* Furthermore, if this is the last arc label in an arc, we should have a value set. */ - if (node->idx == 0) - { - assert(node->valset == true); - } - if (!node->valset) { /* Insert is only possible if we have no production */