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:
authorHoward Trickey <howard.trickey@gmail.com>2021-02-22 17:53:29 +0300
committerHoward Trickey <howard.trickey@gmail.com>2021-02-22 17:54:18 +0300
commit6cd8c33d000a9febdb9f4d1596bf8f94b56f9025 (patch)
tree54d0ecfa0d4bd271b6d3cc84d4b80841944fecf0
parentdd2e0150ae00b91a8e8da3def7aeb247ad7ff101 (diff)
Fix compilation error in bypass bmesh commit when GMP not defined.
-rw-r--r--source/blender/blenkernel/intern/mesh_boolean_convert.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mesh_boolean_convert.cc b/source/blender/blenkernel/intern/mesh_boolean_convert.cc
index b546550a85f..02c99d2c5da 100644
--- a/source/blender/blenkernel/intern/mesh_boolean_convert.cc
+++ b/source/blender/blenkernel/intern/mesh_boolean_convert.cc
@@ -821,11 +821,12 @@ Mesh *BKE_mesh_boolean(const Mesh **meshes,
#else
Mesh *BKE_mesh_boolean(const Mesh **UNUSED(meshes),
- const Object **UNUSED(objects),
+ const float (*obmats[])[4][4],
const int UNUSED(meshes_len),
const bool UNUSED(use_self),
const int UNUSED(boolean_mode))
{
+ UNUSED_VARS(obmats);
return NULL;
}