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>2015-11-28 05:37:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-28 05:37:02 +0300
commita12fa185f8b098d89e13afe476e1c34b40d21f29 (patch)
treef77cf594924a0d0a76f25f2354a2aaa8b45e072b /source/blender/bmesh/intern/bmesh_construct.h
parentbafccb00dec6d882c580102aa4d0b0889c898154 (diff)
BMesh: use typed filter callbacks (const args too)
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_construct.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_construct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_construct.h b/source/blender/bmesh/intern/bmesh_construct.h
index 29503679547..ce8b8dd8391 100644
--- a/source/blender/bmesh/intern/bmesh_construct.h
+++ b/source/blender/bmesh/intern/bmesh_construct.h
@@ -38,7 +38,7 @@ BMFace *BM_face_create_quad_tri(
void BM_face_copy_shared(
BMesh *bm, BMFace *f,
- BMElemFilterFunc filter_fn, void *user_data);
+ BMLoopFilterFunc filter_fn, void *user_data);
BMFace *BM_face_create_ngon(
BMesh *bm, BMVert *v1, BMVert *v2, BMEdge **edges, const int len,