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:
authorJürgen Herrmann <shadowrom@me.com>2013-05-16 15:04:01 +0400
committerJürgen Herrmann <shadowrom@me.com>2013-05-16 15:04:01 +0400
commitcd34945792f2f1107afff099f56bd83381a04a69 (patch)
tree476e21470648c3e6c8546cd50154f7941d457fba
parent812cd6c75e21d1de0d50c832ac6ea164c94ab48f (diff)
Fix compile error on VS2012.
Unused variables (for debug only) give an error.
-rw-r--r--source/blender/bmesh/operators/bmo_grid_fill.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/bmesh/operators/bmo_grid_fill.c b/source/blender/bmesh/operators/bmo_grid_fill.c
index 64b1ceee003..98273f2ebd8 100644
--- a/source/blender/bmesh/operators/bmo_grid_fill.c
+++ b/source/blender/bmesh/operators/bmo_grid_fill.c
@@ -251,7 +251,9 @@ static void bm_grid_fill(BMesh *bm,
const int ytot = BM_edgeloop_length_get(estore_rail_a);
//BMVert *v;
int i;
+#ifdef DEBUG
int x, y;
+#endif
LinkData *el;
bool use_flip = false;