Remove invalid assert

This commit is contained in:
Campbell Barton 2015-04-09 13:00:31 +10:00
parent aa24704749
commit 12661de087
Notes: blender-bot 2023-02-14 09:15:36 +01:00
Referenced by issue #44345, Composite Crash- Multiview?
Referenced by issue #44329, Blender Crash
1 changed files with 0 additions and 1 deletions

View File

@ -232,7 +232,6 @@ BLI_INLINE void edgehash_insert_ex_keyonly(EdgeHash *eh, unsigned int v0, unsign
EdgeEntry *e = BLI_mempool_alloc(eh->epool);
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 */
BLI_assert(v0 < v1);