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:
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_boolean.cc')
-rw-r--r--source/blender/bmesh/tools/bmesh_boolean.cc32
1 files changed, 16 insertions, 16 deletions
diff --git a/source/blender/bmesh/tools/bmesh_boolean.cc b/source/blender/bmesh/tools/bmesh_boolean.cc
index 50a6812895f..288a0d9ab74 100644
--- a/source/blender/bmesh/tools/bmesh_boolean.cc
+++ b/source/blender/bmesh/tools/bmesh_boolean.cc
@@ -466,16 +466,16 @@ bool BM_mesh_boolean_knife(BMesh *bm,
blender::meshintersect::BoolOpType::None);
}
#else
-bool BM_mesh_boolean(BMesh *UNUSED(bm),
+bool BM_mesh_boolean(BMesh * /*bm*/,
struct BMLoop *(*looptris)[3],
- const int UNUSED(looptris_tot),
+ const int /*looptris_tot*/,
int (*test_fn)(BMFace *, void *),
- void *UNUSED(user_data),
- const int UNUSED(nshapes),
- const bool UNUSED(use_self),
- const bool UNUSED(keep_hidden),
- const bool UNUSED(hole_tolerant),
- const int UNUSED(boolean_mode))
+ void * /*user_data*/,
+ const int /*nshapes*/,
+ const bool /*use_self*/,
+ const bool /*keep_hidden*/,
+ const bool /*hole_tolerant*/,
+ const int /*boolean_mode*/)
{
UNUSED_VARS(looptris, test_fn);
return false;
@@ -489,16 +489,16 @@ bool BM_mesh_boolean(BMesh *UNUSED(bm),
* TODO: need to ensure that "selected/non-selected" flag of original faces gets propagated
* to the intersection result faces.
*/
-bool BM_mesh_boolean_knife(BMesh *UNUSED(bm),
+bool BM_mesh_boolean_knife(BMesh * /*bm*/,
struct BMLoop *(*looptris)[3],
- const int UNUSED(looptris_tot),
+ const int /*looptris_tot*/,
int (*test_fn)(BMFace *, void *),
- void *UNUSED(user_data),
- const int UNUSED(nshapes),
- const bool UNUSED(use_self),
- const bool UNUSED(use_separate_all),
- const bool UNUSED(hole_tolerant),
- const bool UNUSED(keep_hidden))
+ void * /*user_data*/,
+ const int /*nshapes*/,
+ const bool /*use_self*/,
+ const bool /*use_separate_all*/,
+ const bool /*hole_tolerant*/,
+ const bool /*keep_hidden*/)
{
UNUSED_VARS(looptris, test_fn);
return false;