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>2014-04-03 08:50:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-03 10:13:31 +0400
commit5873160242fe286919831bdb67d99ec5cd2395a8 (patch)
tree01f7235e6400404e069f78a490748dfa5b076e12 /source/blender/bmesh/intern/bmesh_mesh.h
parent75c0ced840aa0efba6e354266b946c02b0c1d939 (diff)
Code cleanup: strict flags for bmesh_log
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_mesh.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_mesh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_mesh.h b/source/blender/bmesh/intern/bmesh_mesh.h
index cba4260eaea..c3ff30e5a2b 100644
--- a/source/blender/bmesh/intern/bmesh_mesh.h
+++ b/source/blender/bmesh/intern/bmesh_mesh.h
@@ -67,7 +67,7 @@ BMFace *BM_face_at_index_find(BMesh *bm, const int index);
int BM_mesh_elem_count(BMesh *bm, const char htype);
-void BM_mesh_remap(BMesh *bm, int *vert_idx, int *edge_idx, int *face_idx);
+void BM_mesh_remap(BMesh *bm, unsigned int *vert_idx, unsigned int *edge_idx, unsigned int *face_idx);
typedef struct BMAllocTemplate {
int totvert, totedge, totloop, totface;