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-23 04:34:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-23 09:40:10 +0300
commitdaa90de3fdb5b9971b713c13a67b9c0a0990b3d7 (patch)
tree1731535b3342d674b02a1b1ebce17d4484a5877f /source/blender/bmesh/operators/bmo_triangulate.c
parente2a79e8b6c638489c6c79dd6fa9136372fe37ec1 (diff)
Cleanup: shadowing (bmesh)
Diffstat (limited to 'source/blender/bmesh/operators/bmo_triangulate.c')
-rw-r--r--source/blender/bmesh/operators/bmo_triangulate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_triangulate.c b/source/blender/bmesh/operators/bmo_triangulate.c
index 94658f1693a..6fb09c76ea4 100644
--- a/source/blender/bmesh/operators/bmo_triangulate.c
+++ b/source/blender/bmesh/operators/bmo_triangulate.c
@@ -123,7 +123,7 @@ void bmo_triangle_fill_exec(BMesh *bm, BMOperator *op)
for (sf_vert = sf_ctx.fillvertbase.first, i = 0; sf_vert; sf_vert = sf_vert->next, i++) {
BMVert *v = sf_vert->tmp.p;
BMIter eiter;
- BMEdge *e, *e_pair[2];
+ BMEdge *e_pair[2];
unsigned int e_index = 0;
nors[i].value = -1.0f;