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:
authorRay Molenkamp <github@lazydodo.com>2019-05-27 18:12:11 +0300
committerRay Molenkamp <github@lazydodo.com>2019-05-27 18:12:11 +0300
commit7a308e65ef1f85629dc3a766452407924e00f75d (patch)
tree47b96754c05ef3da5903398ed7d85a3cde655899 /source/blender
parent7f1513efc55180a75e1f4dc3010e1b3b391dbdfb (diff)
Cleanup: Fix warning in bf_editor_mesh
Declaration and implementation of EDBM_select_id_context_create got out of sync leading to warning with msvc.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/mesh/editmesh_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index 0aa160453b5..e8116309010 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -346,7 +346,7 @@ uint EDBM_select_id_context_elem_len(const struct EDBMSelectID_Context *sel_id_c
struct EDBMSelectID_Context *EDBM_select_id_context_create(ViewContext *vc,
Base **bases,
- uint bases_len,
+ const uint bases_len,
short select_mode)
{
struct EDBMSelectID_Context *sel_id_ctx = MEM_mallocN(sizeof(*sel_id_ctx), __func__);