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:
authorHans Goudey <h.goudey@me.com>2021-03-25 00:46:39 +0300
committerHans Goudey <h.goudey@me.com>2021-03-25 00:46:39 +0300
commit4ea3d249301003e5d823bddce2962c81274556d8 (patch)
treef11e69df04d82d6e7477c38447d425205bf1f755 /source/blender/python/bmesh/bmesh_py_types.c
parent2495c0c53929d0480cfb6ae81502d79636a656b8 (diff)
parent9ad3d1d36b64f336fabdd9b3d9f02b13740068b0 (diff)
Merge branch 'master' into temp-geometry-nodes-processor-prototype
Diffstat (limited to 'source/blender/python/bmesh/bmesh_py_types.c')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index 5fca6f4cec6..563a76ac824 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -3984,7 +3984,7 @@ PyObject *BPy_BMElem_CreatePyObject(BMesh *bm, BMHeader *ele)
case BM_LOOP:
return BPy_BMLoop_CreatePyObject(bm, (BMLoop *)ele);
default:
- BLI_assert(0);
+ BLI_assert_unreachable();
PyErr_SetString(PyExc_SystemError, "internal error");
return NULL;
}