Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-11-24 06:28:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-11-24 06:29:17 +0300
commitc62e3a05b08b18e2767590a51bd9decc274106a3 (patch)
treed436224dfd47afdbce7b2f2da928c50e943b7498
parentb63442e0b61691a0aa65ce1cef806beba67e85ee (diff)
Cleanup: -Wnonnull-compare GCC warning
-rw-r--r--source/blender/bmesh/intern/bmesh_iterators_inline.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/bmesh/intern/bmesh_iterators_inline.h b/source/blender/bmesh/intern/bmesh_iterators_inline.h
index 32f0f4b67c4..88985d639cf 100644
--- a/source/blender/bmesh/intern/bmesh_iterators_inline.h
+++ b/source/blender/bmesh/intern/bmesh_iterators_inline.h
@@ -196,8 +196,6 @@ ATTR_NONNULL(1)
BLI_INLINE void BM_iter_parallel(
BMesh *bm, const char itype, TaskParallelMempoolFunc func, void *userdata, const bool use_threading)
{
- BLI_assert(bm != NULL);
-
/* inlining optimizes out this switch when called with the defined type */
switch ((BMIterType)itype) {
case BM_VERTS_OF_MESH: