Remove invalid assert

This commit is contained in:
Campbell Barton 2015-04-09 13:00:31 +10:00
parent aa24704749
commit 12661de087

@ -232,7 +232,6 @@ BLI_INLINE void edgehash_insert_ex_keyonly(EdgeHash *eh, unsigned int v0, unsign
EdgeEntry *e = BLI_mempool_alloc(eh->epool); EdgeEntry *e = BLI_mempool_alloc(eh->epool);
BLI_assert((eh->flag & EDGEHASH_FLAG_ALLOW_DUPES) || (BLI_edgehash_haskey(eh, v0, v1) == 0)); BLI_assert((eh->flag & EDGEHASH_FLAG_ALLOW_DUPES) || (BLI_edgehash_haskey(eh, v0, v1) == 0));
IS_EDGEHASH_ASSERT(eh);
/* this helps to track down errors with bad edge data */ /* this helps to track down errors with bad edge data */
BLI_assert(v0 < v1); BLI_assert(v0 < v1);