summaryrefslogtreecommitdiff
path: root/src/upb_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/upb_table.c')
-rw-r--r--src/upb_table.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/upb_table.c b/src/upb_table.c
index 39b8f20..720cc62 100644
--- a/src/upb_table.c
+++ b/src/upb_table.c
@@ -129,7 +129,6 @@ static void intinsert(upb_inttable *t, upb_inttable_entry *e)
void upb_inttable_insert(upb_inttable *t, upb_inttable_entry *e)
{
- assert(e->key != 0);
if((double)(t->t.count + 1) / upb_inttable_size(t) > MAX_LOAD) {
/* Need to resize. New table of double the size, add old elements to it. */
upb_inttable new_table;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback