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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-09-11 17:33:37 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-09-11 17:33:37 +0400
commitb762cc28ea86becac96ea4477cfb806374007abb (patch)
tree6c4c7632dc821f83c3274606be5866c2f058fe8e
parented6942f9ad3c9d79a4d3981da3c902ea9d7cacc0 (diff)
Workaround for strict flags and release build compilation
@campbellbarton, it's really helpful to have strict flags enabled for release builds as well -- especially when you're working in areas which are heavily using least squares solvers. For now made it so blender compiles, but it could be better solution here.
-rw-r--r--source/blender/bmesh/operators/bmo_inset.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/bmesh/operators/bmo_inset.c b/source/blender/bmesh/operators/bmo_inset.c
index 1b72a314bb9..d74e86d999c 100644
--- a/source/blender/bmesh/operators/bmo_inset.c
+++ b/source/blender/bmesh/operators/bmo_inset.c
@@ -156,6 +156,7 @@ static void bm_loop_customdata_merge(
BLI_assert(l_a_outer->f == l_a_inner->f);
BLI_assert(l_b_outer->f == l_b_inner->f);
+ (void) e_connect;
BLI_assert(BM_edge_in_face(e_connect, l_a_inner->f));
BLI_assert(BM_edge_in_face(e_connect, l_b_inner->f));