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:
authorJacques Lucke <jacques@blender.org>2021-02-22 12:29:34 +0300
committerJacques Lucke <jacques@blender.org>2021-02-22 12:29:34 +0300
commitb4147aeeab7d34552a7b7bfe45a9d03217bcdc33 (patch)
tree0862b78f707e196fb64948e5ed630f475faae1b7 /source/blender/blenlib/intern/mesh_boolean.cc
parent29a28a87e43da4d8727f574babad91d17e754fb5 (diff)
Cleanup: unused variable
Diffstat (limited to 'source/blender/blenlib/intern/mesh_boolean.cc')
-rw-r--r--source/blender/blenlib/intern/mesh_boolean.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/mesh_boolean.cc b/source/blender/blenlib/intern/mesh_boolean.cc
index defcb414c86..fffa37b935b 100644
--- a/source/blender/blenlib/intern/mesh_boolean.cc
+++ b/source/blender/blenlib/intern/mesh_boolean.cc
@@ -2618,6 +2618,7 @@ static int orig_edge_for_cdt_edge(const CDT_result<mpq_class> &cdt_out,
int b = cdt_e_orig % cdt_out.face_edge_offset;
/* It is the bth position within cdt input face a - 1. There is only one face, f. */
BLI_assert(a == 1);
+ UNUSED_VARS_NDEBUG(a);
BLI_assert(b < f->size());
return f->edge_orig[b];
}